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

Commit b209d19

Browse files
authoredDec 28, 2017
Merge pull request #173 from scikit-learn-contrib/pypi
Fix setup.py for pypi
2 parents b4df56d + 2fff815 commit b209d19

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed
 

‎appveyor.yml

+22-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ environment:
88
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\build_tools\\appveyor\\run_with_env.cmd"
99

1010
matrix:
11+
- PYTHON: "C:\\Python26"
12+
PYTHON_VERSION: "2.6.9"
13+
PYTHON_ARCH: "32"
14+
MINICONDA: "C:\\Miniconda"
15+
16+
- PYTHON: "C:\\Python26-x64"
17+
PYTHON_VERSION: "2.6.9"
18+
PYTHON_ARCH: "64"
19+
MINICONDA: "C:\\Miniconda-x64"
20+
1121
- PYTHON: "C:\\Python27"
1222
PYTHON_VERSION: "2.7.8"
1323
PYTHON_ARCH: "32"
@@ -27,6 +37,17 @@ environment:
2737
PYTHON_VERSION: "3.5.0"
2838
PYTHON_ARCH: "64"
2939
MINICONDA: "C:\\Miniconda35-x64"
40+
41+
- PYTHON: "C:\\Python36"
42+
PYTHON_VERSION: "3.6.3"
43+
PYTHON_ARCH: "32"
44+
MINICONDA: "C:\\Miniconda36"
45+
46+
- PYTHON: "C:\\Python36-x64"
47+
PYTHON_VERSION: "3.6.3"
48+
PYTHON_ARCH: "64"
49+
MINICONDA: "C:\\Miniconda36-x64"
50+
3051

3152

3253

@@ -52,7 +73,7 @@ install:
5273
- ps: "ls"
5374

5475
# Install the generated wheel package to test it
55-
- "pip install --pre --no-index --find-links dist/ py-earth"
76+
- "pip install --pre --no-index --find-links dist/ sklearn-contrib-py-earth"
5677

5778
# Not a .NET project, we build scikit-learn in the install step instead
5879
build: false

‎setup.py

+3-2
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': 'jcrudy@gmail.com',
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)
This repository has been archived.