-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
58 lines (53 loc) · 1.35 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
requires = [
'falcon==3.0.*',
'falcon-sqla==0.2.0',
'configparser==5.0.*',
'psycopg2==2.8.4',
'gunicorn==20.1.*',
'alembic==1.5.*',
'SQLAlchemy==1.3.*',
'sqlalchemy_utils==0.37.*',
'passlib==1.7.*',
'itsdangerous==2.0.*',
'jinja2==3.0.*',
'jsonschema'
]
tests_require = [
'pytest>= 3.7.4, <=6.1.2',
'pytest-cov',
'schemathesis',
'flake8',
'smtpdfix'
]
setup(
name='cyberdas',
version='1.0.2',
description='CyberDAS API',
classifiers=[
'Programming Language :: Python',
'Framework :: Falcon',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
author='CyberDAS Development',
author_email='[email protected]',
url='https://github.com/CyberDAS-Dev/API',
keywords='',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
extras_require={
'testing': tests_require,
},
install_requires=requires,
entry_points={
'console_scripts': [
'initialize_db = cyberdas.scripts.initialize_db:main',
'send_mail = cyberdas.scripts.send_mail:main',
'dump_table = cyberdas.scripts.dump_table:main',
],
},
)