|
1 | | -"""This file contains the fiscalsim-us package's metadata and dependencies.""" |
| 1 | +"""This file contains the CompMethods package's metadata and dependencies.""" |
2 | 2 |
|
3 | 3 | from setuptools import find_packages, setup |
4 | 4 |
|
5 | 5 | with open("README.md", "r") as readme_file: |
6 | 6 | readme = readme_file.read() |
7 | 7 |
|
8 | 8 | setup( |
9 | | - name="UN-OG-Training", |
10 | | - version="0.0.0", |
11 | | - author="Jason DeBacker and Richard W. Evans", |
| 9 | + name="CompMethods", |
| 10 | + version="0.0.1", |
| 11 | + author="Richard W. Evans", |
12 | 12 | author_email="rickecon@gmail.com", |
13 | 13 | long_description=readme, |
14 | 14 | long_description_content_type="text/markdown", |
|
17 | 17 | "License :: OSI Approved :: GNU Affero General Public License v3", |
18 | 18 | "Operating System :: POSIX", |
19 | 19 | "Programming Language :: Python", |
20 | | - "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python :: 3.10", |
21 | 21 | "Topic :: Scientific/Engineering :: Information Analysis", |
22 | 22 | ], |
23 | | - description="UN open source OG-Core overlapping generations macroeconomic model training", |
24 | | - keywords="tax benefit macroeconomic dynamic general equilibrium fiscal", |
| 23 | + description="Computational Methods for Economists using Python", |
| 24 | + keywords="code python git github data science python regression causal inference structural estimation machine learning neural networks deep learning statistics econometrics", |
25 | 25 | license="http://www.fsf.org/licensing/licenses/agpl-3.0.html", |
26 | | - url="https://github.com/OpenRG/UN-OG-Training", |
| 26 | + url="https://github.com/OpenSourceEcon/CompMethods", |
27 | 27 | include_package_data=True, # Will read MANIFEST.in |
28 | 28 | install_requires=[ |
29 | 29 | "numpy", |
|
44 | 44 | "setuptools", |
45 | 45 | "pytest", |
46 | 46 | "coverage", |
47 | | - "ogcore", |
48 | 47 | "linecheck", |
49 | 48 | "yaml-changelog", |
50 | 49 | ], |
51 | | - # Windows CI requires Python 3.9. |
52 | 50 | python_requires=">=3.10", |
53 | 51 | tests_require=["pytest"], |
54 | 52 | packages=find_packages(), |
|
0 commit comments