-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (26 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
setup(
name="extra_keras_datasets",
packages=["extra_keras_datasets"],
version="{{VERSION}}",
license="MIT",
description="Extending the Keras Datasets module with extra ones.",
long_description="Extending the Keras Datasets module with extra ones.",
author="Christian Versloot",
author_email="[email protected]",
url="https://github.com/christianversloot/extra_keras_datasets",
download_url=("https://github.com/christianversloot/"
"extra_keras_datasets/archive/{{VERSION}}.tar.gz"),
keywords=["keras", "datasets", "machine learning"],
install_requires=["numpy", "scipy", "pandas", "scikit-learn"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)