-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
76 lines (75 loc) · 1.95 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from setuptools import find_packages, setup
setup(
name='ajna_docs',
description='Visao computacional e Aprendizado de Maquina na Vigilancia Aduaneira',
version='0.0.1',
url='https://github.com/IvanBrasilico/ajna_docs',
license='GPL',
author='Ivan Brasilico',
author_email='brasilico.ivan@gmail.com',
packages=find_packages(),
install_requires=[
'click',
'Celery',
'defusedxml',
'dominate',
'Flask',
'Flask-BootStrap',
'Flask-Login',
'Flask-cors',
'Flask-nav',
'Flask-session',
'Flask-wtf',
'flask_jwt_extended',
'imageio',
'keras',
'pandas',
'plotly',
'pymongo',
'raven',
'redis',
'sklearn',
'sqlalchemy',
'tensorflow'
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
test_suite="tests",
package_data={
},
extras_require={
'dev': [
'alembic',
'bandit',
'coverage',
'flake8',
'flake8-docstrings',
'flake8-todo',
'flake8-quotes',
'flask-webtest',
'isort',
'mkdocs',
'mkdocs-material',
'pylint',
'pytest',
'pytest-cov',
'pytest-mock',
'sphinx',
'sphinx_rtd_theme',
'testfixtures',
'radon',
'tox'
],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: User Interfaces',
'Topic :: Utilities',
'Programming Language :: Python :: 3.5',
],
)