-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·36 lines (33 loc) · 1.03 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
#!/usr/bin/env python
import setuptools
with open('README.md') as readme:
long_description = readme.read()
with open('requirements.txt') as requirements:
install_requires = [x.strip() for x in requirements.read().split(
'\n') if not x.startswith('#')]
setuptools.setup(
name="flask-tus",
version="0.1",
author="Vincent Olesen",
author_email="private@email.com",
description="Tus protocol 1.0.0 server implementation for Flask",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/volesen/flask-tus",
packages=setuptools.find_packages(),
install_requires=install_requires,
extras_require={
'testing': ['pytest >= 4.2.0'],
},
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'flask.commands': [
'tus=flask_tus.manage.commands:cli'
],
}
)