Skip to content

Commit 33411ae

Browse files
WIP PIP
1 parent 93d3023 commit 33411ae

File tree

7 files changed

+29
-3
lines changed

7 files changed

+29
-3
lines changed
File renamed without changes.

β€Ž__init__.pyβ€Ž

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from __future__ import absolute_import
2+
3+
from . import emnist
4+
from . import kmnist
File renamed without changes.
File renamed without changes.

β€Žsetup.cfgβ€Ž

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
from distutils.core import setup
3+
setup(
4+
name = 'extra_keras_datasets',
5+
packages = ['extra_keras_datasets'],
6+
version = '0.1',
7+
license='MIT',
8+
description = 'Extending the Keras Datasets module with extra ones.',
9+
author = 'Christian Versloot',
10+
author_email = '[email protected]',
11+
url = 'https://github.com/christianversloot/extra_keras_datasets',
12+
download_url = '',
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+
)

β€Žsetup.pyβ€Ž

Whitespace-only changes.

0 commit comments

Comments
Β (0)