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

Commit 2fc2498

Browse files
committed
Fix setup.py for pypi
1 parent 3cdd328 commit 2fc2498

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ def get_ext_modules():
9898
def setup_package():
9999
# Create a dictionary of arguments for setup
100100
setup_args = {
101-
'name': 'py-earth',
101+
'name': 'sklearn-contrib-py-earth',
102102
'version': versioneer.get_version(),
103103
'author': 'Jason Rudy',
104104
'author_email': '[email protected]',
105105
'packages': find_packages(),
106106
'license': 'LICENSE.txt',
107107
'download_url': 'https://github.com/scikit-learn-contrib/py-earth/archive/0.1.tar.gz',
108108
'description':
109-
'A Python implementation of Jerome Friedman\'s MARS algorithm.',
109+
'A Python implementation of Jerome Friedman\'s Multivariate Adaptive Regression Splines.',
110110
'long_description': codecs.open('README.md', mode='r', encoding='utf-8').read(),
111111
'classifiers': ['Intended Audience :: Developers',
112112
'Intended Audience :: Science/Research',
@@ -124,6 +124,7 @@ def setup_package():
124124
'Programming Language :: Python :: 3',
125125
'Programming Language :: Python :: 3.4',
126126
'Programming Language :: Python :: 3.5',
127+
'Programming Language :: Python :: 3.6',
127128
'Topic :: Scientific/Engineering',
128129
'Topic :: Software Development'],
129130
'install_requires': [

0 commit comments

Comments
 (0)