forked from FDA/openfda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 894 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
#!/usr/bin/python
import setuptools
setuptools.setup(
name='openfda',
version='0.01',
maintainer='openFDA',
maintainer_email='[email protected]',
url='http://github.com/fda/openfda',
install_requires=[
'arrow',
'BeautifulSoup4',
'boto',
'click',
'elasticsearch',
'flask',
'leveldb',
'luigi',
'lxml',
'nose',
'python-gflags',
'pyyaml',
'pyelasticsearch',
'requests',
'simplejson',
'xmltodict',
],
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 = 'nose.collector',
)