-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
62 lines (60 loc) · 1.93 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import setuptools
with open("README.md", "r") as readme_file:
longdesc = readme_file.read()
setuptools.setup(
name="ogusa",
version="0.2.1",
author="Jason DeBacker and Richard W. Evans",
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
description="USA calibration for OG-Core",
long_description_content_type="text/markdown",
long_description=longdesc,
keywords="USA calibration of large scale overlapping generations model of fiscal policy",
url="https://github.com/PSLmodels/OG-USA/",
download_url="https://github.com/PSLmodels/OG-USA/",
project_urls={
"Issue Tracker": "https://github.com/PSLmodels/OG-USA/issues",
},
packages=["ogusa"],
package_data={
"ogusa": [
"ogusa_default_parameters.json",
"psid_lifetime_income.csv.gz",
]
},
include_packages=True,
python_requires=">=3.7.7, <3.13",
install_requires=[
"numpy",
"psutil",
"scipy>=1.5.0",
"pandas>=1.2.5",
"matplotlib",
"dask>=2.30.0",
"distributed>=2.30.1",
"paramtools>=0.15.0",
"taxcalc>=3.0.0",
"requests",
"pandas-datareader",
"xlwt",
"openpyxl>=3.1.2",
"statsmodels",
"linearmodels",
"wheel",
"ogcore",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Common Public License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
],
tests_require=["pytest"],
)