Skip to content

Commit 7e357c0

Browse files
PIP ready
1 parent 221cf73 commit 7e357c0

File tree

2 files changed

+30
-24
lines changed

2 files changed

+30
-24
lines changed

setup.cfg

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,3 @@
11

2-
from distutils.core import setup
3-
setup(
4-
name = 'extra_keras_datasets',
5-
packages = ['extra_keras_datasets'],
6-
version = '0.1.1',
7-
license='MIT',
8-
description = 'Extending the Keras Datasets module with extra ones.',
9-
author = 'Christian Versloot',
10-
author_email = 'chris@machinecurve.com',
11-
url = 'https://github.com/christianversloot/extra_keras_datasets',
12-
download_url = 'https://github.com/christianversloot/extra_keras_datasets/archive/0.1.1.tar.gz',
13-
keywords = ['keras', 'datasets', 'machine learning'],
14-
install_requires=[],
15-
classifiers=[
16-
'Development Status :: 5 - Production/Stable',
17-
'Intended Audience :: Developers',
18-
'Topic :: Software Development :: Build Tools',
19-
'License :: OSI Approved :: MIT License',
20-
'Programming Language :: Python :: 3',
21-
'Programming Language :: Python :: 3.4',
22-
'Programming Language :: Python :: 3.5',
23-
'Programming Language :: Python :: 3.6',
24-
],
25-
)
2+
[metadata]
3+
description-file = README.md

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'extra_keras_datasets',
4+
packages = ['extra_keras_datasets'],
5+
version = '0.1.1',
6+
license='MIT',
7+
description = 'Extending the Keras Datasets module with extra ones.',
8+
author = 'Christian Versloot',
9+
author_email = 'chris@machinecurve.com',
10+
url = 'https://github.com/christianversloot/extra_keras_datasets',
11+
download_url = 'https://github.com/christianversloot/extra_keras_datasets/archive/0.1.1.tar.gz',
12+
keywords = ['keras', 'datasets', 'machine learning'],
13+
install_requires=[
14+
'keras',
15+
'numpy',
16+
'scipy'
17+
],
18+
classifiers=[
19+
'Development Status :: 5 - Production/Stable',
20+
'Intended Audience :: Developers',
21+
'Topic :: Software Development :: Build Tools',
22+
'License :: OSI Approved :: MIT License',
23+
'Programming Language :: Python :: 3',
24+
'Programming Language :: Python :: 3.4',
25+
'Programming Language :: Python :: 3.5',
26+
'Programming Language :: Python :: 3.6',
27+
],
28+
)

0 commit comments

Comments
 (0)