-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (39 loc) · 986 Bytes
/
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
import setuptools
setuptools.setup(
name='pulse',
version='0.0.1',
long_description='',
author='GSA 18F, CDS-SNC',
author_email='[email protected], [email protected]',
url='https://github.com/cds-snc/pulse',
packages=[
'data',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
install_requires=[
'cfenv==0.5.2',
'flask==0.12',
'gunicorn==19.6.0',
'newrelic==2.86.2.68',
'pyyaml==3.12',
'python-slugify==1.2.1',
'tinydb==3.2.1',
'ujson==1.35',
'waitress==1.0.1',
'flask-compress==1.4.0',
'Frozen-Flask==0.11'
],
extras_require={
'development': [
'mypy==0.590',
'pylint==1.8.4',
'pytest==3.5.0',
'pytest-cov==2.5.1',
],
},
)