Skip to content

Commit 7fca3fc

Browse files
committed
version in setup
1 parent 1b0a220 commit 7fca3fc

File tree

1 file changed

+12
-16
lines changed

1 file changed

+12
-16
lines changed

setup.py

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import find_packages, setup
22

3-
4-
setup(name='skope-rules',
5-
version='1.0.0',
6-
description='Machine Learning with Interpretable Rules',
7-
url='https://github.com/scikit-learn-contrib/skope-rules',
8-
author='see AUTHORS.rst',
9-
license='BSD 3 clause',
10-
packages=find_packages(),
11-
keywords=['learning with rules',
12-
'interpretable machine learning'],
13-
install_requires=['numpy>=1.10.4',
14-
'scikit-learn>=0.17.1',
15-
'scipy>=0.17.0',
16-
'pandas>=0.18.1'
17-
])
3+
setup(
4+
name="skope-rules",
5+
version="1.0.1",
6+
description="Machine Learning with Interpretable Rules",
7+
url="https://github.com/scikit-learn-contrib/skope-rules",
8+
author="see AUTHORS.rst",
9+
license="BSD 3 clause",
10+
packages=find_packages(),
11+
keywords=["learning with rules", "interpretable machine learning"],
12+
install_requires=["numpy>=1.10.4", "scikit-learn>=0.17.1", "scipy>=0.17.0", "pandas>=0.18.1"],
13+
)

0 commit comments

Comments
 (0)