Skip to content

Commit

Permalink
Preparing for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrudy committed Jun 12, 2017
1 parent 2802ad3 commit fc0111a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions description.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The py-earth package implements Multivariate Adaptive Regression Splines and provides an interface that is compatible with scikit-learn's Estimator, Predictor, Transformer, and Model interfaces.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ tag_prefix=
parentdir_prefix = py-earth

[metadata]
description-file = README.md
description-file = description.md
license_file = LICENSE.txt
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,13 @@ def setup_package():
'packages': ['pyearth', 'pyearth.test',
'pyearth.test.basis', 'pyearth.test.record'],
'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.',
'long_description': codecs.open('README.md', mode='r', encoding='utf-8').read(),
'py_modules': ['pyearth.earth', 'pyearth._version'],
'classifiers': ['Development Status :: 3 - Alpha'],
'requires': ['numpy', 'scipy'],
'requires': ['numpy', 'scipy', 'scikit-learn'],
'install_requires': [
'scipy >= 0.16',
'scikit-learn >= 0.16',
Expand Down

0 comments on commit fc0111a

Please sign in to comment.