Skip to content

Commit 82fdf2b

Browse files
committed
MAINT prepare release
1 parent 07f2637 commit 82fdf2b

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ recursive-include autosklearn/metalearning/files *.arff
66
recursive-include autosklearn/metalearning/files *.csv
77
recursive-include autosklearn/metalearning/files *.txt
88
include autosklearn/util/logging.yaml
9+
recursive-include autosklearn *.pyx

setup.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,9 @@
1212

1313
import setuptools
1414
from setuptools.extension import Extension
15-
from setuptools.command.install import install
1615
import numpy as np
1716
from Cython.Build import cythonize
1817

19-
METADATA_DIRECTORY = 'autosklearn/metalearning/files'
20-
2118
extensions = cythonize(
2219
[Extension('autosklearn.data.competition_c_functions',
2320
sources=['autosklearn/data/competition_c_functions.pyx'],
@@ -27,9 +24,9 @@
2724

2825

2926
setuptools.setup(
30-
name='AutoSklearn',
31-
description='Code to participate in the AutoML 2015 challenge.',
32-
version='0.0.1dev',
27+
name='auto-sklearn',
28+
description='Automated machine learning.',
29+
version='0.0.1',
3330
ext_modules=extensions,
3431
packages=setuptools.find_packages(exclude=['test']),
3532
install_requires=['numpy>=1.9.0',
@@ -55,4 +52,4 @@
5552
license='BSD',
5653
platforms=['Linux'],
5754
classifiers=[],
58-
url='www.automl.org')
55+
url='automl.github.io/auto-sklearn')

0 commit comments

Comments
 (0)