forked from josedvq/covfee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (48 loc) · 1.44 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
48
49
50
import versioneer
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='covfee',
# using versioneer for versioning using git tags
# https://github.com/python-versioneer/python-versioneer/blob/master/INSTALL.md
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Jose Vargas",
author_email="josedvq@gmail.com",
description="Continuous video feedback tool",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
# user CLI
'covfee = covfee.cli.commands.launch:covfee_cli',
# developer CLI
'covfee-dev = covfee.cli.commands.dev:covfee_dev_cli'
]
},
install_requires=[
'Flask == 1.*',
'werkzeug==2.0.3',
'MarkupSafe==2.0.1',
'flask_cors == 3.*',
'Flask-SQLAlchemy == 2.*',
'flask-socketio == 5.*',
'gunicorn == 20.*',
'flask-jwt-extended == 3.*',
'click == 7.*',
'pandas == 1.*',
'jsonschema == 3.*',
'halo == 0.*',
'colorama == 0.4.*',
'pyzmq == 22.*',
'numpy == 1.*',
'zipstream-new == 1.*',
'construct == 2.*',
'google-auth == 2.*'
],
python_requires='>=3.6'
)