-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 837 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
from setuptools import setup
setup(
name = 'NHANES-semantic-data-dictionary-annotation',
version = '1.0.3',
description = 'Scripts for extracting semantic data dictionaries from NHANES data',
url = 'https://github.com/rashidsabbir/extractor',
author = 'Ryan Sherman, Sabbir Rashid',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers'],
scripts = ['annotation_engine.py', 'NHANES_extractor_exp.py', 'utils.py'],
install_requires=[
'labkey',
'PyDictionary',
'sklearn',
'multiprocessing',
'inflect',
'urllib2',
'requests',
'urllib',
'bs4',
'lxml',
'numpy',
'scipy'
],
zip_safe = False)