-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (43 loc) · 1.1 KB
/
setup.py
File metadata and controls
50 lines (43 loc) · 1.1 KB
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
47
48
49
from setuptools import find_packages, setup
import sys
import os
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='publicdata',
version='0.3.10',
url='https://github.com/CivicKnowledge/publicdata',
license='MIT',
author='Eric Busboom',
author_email='eric@busboom.org',
description='Metatab support code for working with public datasets',
packages=find_packages(),
zip_safe=True,
install_requires=[
'fs >= 2',
'rowgenerators',
'pandas',
'requests',
'geoid',
'tqdm',
'fuzzy', # For NLSY
'nltk', # for NLSY
'stringdist', # For NLSY
'fredapi' # For FRED
],
entry_points={
'appurl.urls': [
"nlsy+ = publicdata.nlsy.appurl:NlsyUrl",
"fred: = publicdata.fred.appurl:FredUrl"
],
'rowgenerators': [
],
'console_scripts': [
'nlsy = publicdata.nlsy.__main__:main'
],
'mt.subcommands': [
'fred=publicdata.fred.cli:fred',
]
},
)