forked from lnsongxf/OG-USA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (33 loc) · 1.33 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import versioneer
config = {
'description': 'dynamic scoring model using Overlapping Generations model for the USA',
'url': 'https://github.com/open-source-economics/OG-USA/',
'download_url': 'https://github.com/open-source-economics/OG-USA/',
'description': 'ogusa',
'package_dir': {'': 'Python'},
'install_requires': [],
'license': 'MIT',
'packages': ['ogusa', 'ogusa.scripts'],
'package_dir': {'ogusa': 'Python/ogusa'},
'package_data': {'ogusa': ['../TxFuncEst_baseline.pkl', 'parameters_metadata.json', 'data/ability/*', 'data/demographic/*', 'data/labor/*', 'data/wealth/*']},
'include_package_data': True,
'name': 'ogusa',
'version': versioneer.get_version(),
'cmdclass': versioneer.get_cmdclass(),
'classifiers': [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'],
'tests_require': ['pytest']
}
setup(**config)