forked from EAPD-DRB/UN-OG-Training
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (55 loc) · 1.8 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
"""This file contains the fiscalsim-us package's metadata and dependencies."""
from setuptools import find_packages, setup
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name="UN-OG-Training",
version="0.0.4",
author="Jason DeBacker and Richard W. Evans",
author_email="rickecon@gmail.com",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description="UN open source OG-Core overlapping generations macroeconomic model training",
keywords="tax benefit macroeconomic dynamic general equilibrium fiscal",
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
url="https://github.com/EAPD-DRB/UN-OG-Training",
include_package_data=True, # Will read MANIFEST.in
install_requires=[
"numpy",
"scipy",
"pandas",
"ipython",
"matplotlib",
"bokeh",
"sphinx",
"sphinx-argparse",
"sphinx-exercise",
"sphinx-proof",
"sphinxcontrib-bibtex>=2.0.0",
"sphinx-math-dollar",
"pydata-sphinx-theme",
"jupyter-book>=0.11.3",
"jupyter",
"black",
"setuptools",
"pytest",
"pytest-cov",
"coverage",
"ogcore",
"ogusa",
"linecheck",
"yaml-changelog",
],
python_requires=">=3.7.7, <3.12",
tests_require=["pytest"],
packages=find_packages(),
)