-
-
Notifications
You must be signed in to change notification settings - Fork 159
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 #2721 from jdebacker/setup_packages
Updates to `setup.py` and Conda environment
- Loading branch information
Showing
6 changed files
with
48 additions
and
40 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
File renamed without changes.
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
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,38 +1,45 @@ | ||
from setuptools import setup | ||
|
||
with open('README.md') as f: | ||
with open("README.md") as f: | ||
longdesc = f.read() | ||
|
||
version = '3.5.0' | ||
version = "3.5.0" | ||
|
||
config = { | ||
'description': 'Tax Calculator', | ||
'url': 'https://github.com/PSLmodels/Tax-Calculator', | ||
'download_url': 'https://github.com/PSLmodels/Tax-Calculator', | ||
'description': 'taxcalc', | ||
'long_description': longdesc, | ||
'version': version, | ||
'license': 'CC0 1.0 Universal (CC0 1.0) Public Domain Dedication', | ||
'packages': ['taxcalc', 'taxcalc.cli'], | ||
'include_package_data': True, | ||
'name': 'taxcalc', | ||
'install_requires': ['setuptools', 'numpy', 'pandas', 'bokeh', 'numba'], | ||
'classifiers': [ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Natural Language :: English', | ||
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Topic :: Software Development :: Libraries :: Python Modules'], | ||
'tests_require': ['pytest'], | ||
'entry_points': { | ||
'console_scripts': ['tc=taxcalc.cli.tc:cli_tc_main'] | ||
} | ||
"description": "Tax Calculator", | ||
"url": "https://github.com/PSLmodels/Tax-Calculator", | ||
"download_url": "https://github.com/PSLmodels/Tax-Calculator", | ||
"description": "taxcalc", | ||
"long_description": longdesc, | ||
"version": version, | ||
"license": "CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", | ||
"packages": ["taxcalc", "taxcalc.cli"], | ||
"include_package_data": True, | ||
"name": "taxcalc", | ||
"install_requires": [ | ||
"setuptools", | ||
"numpy", | ||
"pandas", | ||
"bokeh", | ||
"numba", | ||
"requests", | ||
"paramtools", | ||
], | ||
"classifiers": [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
"tests_require": ["pytest"], | ||
"entry_points": {"console_scripts": ["tc=taxcalc.cli.tc:cli_tc_main"]}, | ||
} | ||
|
||
setup(**config) |