-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
47 lines (42 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
def get_long_description():
with open('README.md') as f:
return f.read()
setup(
name="Starlette-WTF",
python_requires=">=3.6",
version="0.4.5",
url="https://github.com/kubetail-org/starlette-wtf",
license="MIT",
author="Andres Morey",
description="Simple integration of Starlette and WTForms.",
long_description=get_long_description(),
long_description_content_type='text/markdown',
packages=['starlette_wtf'],
platforms='any',
install_requires=[
'itsdangerous',
'python-multipart',
'starlette',
'WTForms'
],
extras_require={
'test': [
'httpx',
'jinja2',
'pytest',
'requests',
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
],
zip_safe=False
)