This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
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 #173 from scikit-learn-contrib/pypi
Fix setup.py for pypi
- Loading branch information
Showing
2 changed files
with
25 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,15 +98,15 @@ def get_ext_modules(): | |
def setup_package(): | ||
# Create a dictionary of arguments for setup | ||
setup_args = { | ||
'name': 'py-earth', | ||
'name': 'sklearn-contrib-py-earth', | ||
'version': versioneer.get_version(), | ||
'author': 'Jason Rudy', | ||
'author_email': '[email protected]', | ||
'packages': find_packages(), | ||
'license': 'LICENSE.txt', | ||
'download_url': 'https://github.com/scikit-learn-contrib/py-earth/archive/0.1.tar.gz', | ||
'description': | ||
'A Python implementation of Jerome Friedman\'s MARS algorithm.', | ||
'A Python implementation of Jerome Friedman\'s Multivariate Adaptive Regression Splines.', | ||
'long_description': codecs.open('README.md', mode='r', encoding='utf-8').read(), | ||
'classifiers': ['Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
|
@@ -124,6 +124,7 @@ def setup_package(): | |
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Software Development'], | ||
'install_requires': [ | ||
|