forked from AusDTO/dto-digitalmarketplace-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (47 loc) · 1.11 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
"""
API for Digital Marketplace.
"""
from setuptools import setup, find_packages
setup(
name='dto-digitalmarketplace-api',
version='500', # TODO: Use semver?
url='https://github.com/arenanetworks/dto-digitalmarketplace-api',
license='MIT',
author='GDS Developers',
description='Marketplace API',
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
package_data={'app': ['DB/*']},
zip_safe=False,
install_requires=[
'dto-digitalmarketplace-utils',
'dto-digitalmarketplace-apiclient',
'Flask',
'Flask-Bcrypt',
'Flask-SQLAlchemy<2.2',
'psycopg2',
'SQLAlchemy',
'SQLAlchemy-Utils',
'streql',
'newrelic',
'celery',
'pycurl',
'mailchimp3',
# For schema validation
'jsonschema',
'rfc3987',
'strict-rfc3339',
# For the import script
'requests',
'docopt',
'six',
'pendulum',
'jira',
'pyjwt',
'markdown',
'sshtunnel',
'paramiko',
'csvx'
]
)