-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from rickecon/stuff
Merging
- Loading branch information
Showing
6 changed files
with
26 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
"""This file contains the fiscalsim-us package's metadata and dependencies.""" | ||
"""This file contains the CompMethods 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.0", | ||
author="Jason DeBacker and Richard W. Evans", | ||
name="CompMethods", | ||
version="0.0.1", | ||
author="Richard W. Evans", | ||
author_email="[email protected]", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
|
@@ -17,13 +17,13 @@ | |
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
], | ||
description="UN open source OG-Core overlapping generations macroeconomic model training", | ||
keywords="tax benefit macroeconomic dynamic general equilibrium fiscal", | ||
description="Computational Methods for Economists using Python", | ||
keywords="code python git github data science python regression causal inference structural estimation machine learning neural networks deep learning statistics econometrics", | ||
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html", | ||
url="https://github.com/OpenRG/UN-OG-Training", | ||
url="https://github.com/OpenSourceEcon/CompMethods", | ||
include_package_data=True, # Will read MANIFEST.in | ||
install_requires=[ | ||
"numpy", | ||
|
@@ -44,11 +44,9 @@ | |
"setuptools", | ||
"pytest", | ||
"coverage", | ||
"ogcore", | ||
"linecheck", | ||
"yaml-changelog", | ||
], | ||
# Windows CI requires Python 3.9. | ||
python_requires=">=3.10", | ||
tests_require=["pytest"], | ||
packages=find_packages(), | ||
|