Skip to content

Commit 92c18d0

Browse files
committed
Updated setup.py
1 parent 7830a93 commit 92c18d0

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

setup.py

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
"""This file contains the fiscalsim-us package's metadata and dependencies."""
1+
"""This file contains the CompMethods package's metadata and dependencies."""
22

33
from setuptools import find_packages, setup
44

55
with open("README.md", "r") as readme_file:
66
readme = readme_file.read()
77

88
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",
1212
author_email="rickecon@gmail.com",
1313
long_description=readme,
1414
long_description_content_type="text/markdown",
@@ -17,13 +17,13 @@
1717
"License :: OSI Approved :: GNU Affero General Public License v3",
1818
"Operating System :: POSIX",
1919
"Programming Language :: Python",
20-
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
2121
"Topic :: Scientific/Engineering :: Information Analysis",
2222
],
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",
2525
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",
2727
include_package_data=True, # Will read MANIFEST.in
2828
install_requires=[
2929
"numpy",
@@ -44,11 +44,9 @@
4444
"setuptools",
4545
"pytest",
4646
"coverage",
47-
"ogcore",
4847
"linecheck",
4948
"yaml-changelog",
5049
],
51-
# Windows CI requires Python 3.9.
5250
python_requires=">=3.10",
5351
tests_require=["pytest"],
5452
packages=find_packages(),

0 commit comments

Comments
 (0)