Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
Fix setup.py for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrudy committed Dec 28, 2017
1 parent 3cdd328 commit 2fc2498
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -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': 'jcrudy@gmail.com',
'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',
Expand All @@ -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': [
Expand Down

0 comments on commit 2fc2498

Please sign in to comment.