forked from FDA/openfda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 922 Bytes
/
setup.py
File metadata and controls
41 lines (39 loc) · 922 Bytes
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
#!/usr/bin/python
import setuptools
setuptools.setup(
name='openfda',
version='0.01',
maintainer='openFDA',
maintainer_email='open@fda.hhs.gov',
url='http://github.com/fda/openfda',
install_requires=[
'arrow',
'beautifulsoup4',
'boto',
'click',
'elasticsearch',
'flask',
'leveldb',
'luigi',
'lxml',
'nose',
'mock',
'coverage',
'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',
)