-
Notifications
You must be signed in to change notification settings - Fork 134
/
setup.py
46 lines (44 loc) · 1.15 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
#!/usr/bin/python
import setuptools
import os
setuptools.setup(
name='openfda',
version='1.0',
maintainer='openFDA',
maintainer_email='open@fda.hhs.gov',
url='http://github.com/fda/openfda',
python_requires='>=3.6',
install_requires=[
'arrow',
'boto',
'click',
'elasticsearch<=7.15.1',
'leveldb',
'luigi<=2.8.13',
'lxml',
'mock<=2.0.0',
'nose2[coverage_plugin]',
'python-gflags',
'requests',
'setproctitle',
'simplejson',
'xmltodict',
'dictsearch',
'usaddress',
'python-crfsuite==0.9.8'
],
dependency_links=[
'file://' + os.path.join(os.getcwd(), 'dependencies',
'python-crfsuite-0.9.8.tar.gz') + '#python_crfsuite-0.9.8'
],
description=('A research project to provide open APIs, raw data downloads, '
'documentation and examples, and a developer community for an '
'important collection of FDA public datasets.'),
packages = ['openfda',
'openfda.annotation_table',
'openfda.faers',
'openfda.spl',
],
zip_safe=False,
test_suite = 'nose2.collector.collector',
)