forked from cds-snc/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (40 loc) · 996 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
41
42
import setuptools
setuptools.setup(
name='tracker',
version='0.0.1',
long_description='',
author='GSA 18F, CDS-SNC',
author_email='[email protected], [email protected]',
url='https://github.com/cds-snc/tracker',
include_package_data=True,
packages=[
'data',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
install_requires=[
'pyyaml==5.1',
'pymongo==3.6.1',
'ujson==1.35',
'click==6.7',
'python-slugify==1.2.1',
'azure-keyvault==1.1.0',
'msrestazure==0.5.1'
],
extras_require={
'development': [
'mypy==0.590',
'pylint==1.8.4',
'pytest==3.5.0',
'pytest-cov==2.5.1',
],
},
entry_points='''
[console_scripts]
tracker=data.cli:main
'''
)