Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
machinecurve
GitHub Repository: machinecurve/extra_keras_datasets
Path: blob/master/setup.py
153 views
1
from setuptools import setup
2
3
setup(
4
name="extra_keras_datasets",
5
packages=["extra_keras_datasets"],
6
version="{{VERSION}}",
7
license="MIT",
8
description="Extending the Keras Datasets module with extra ones.",
9
long_description="Extending the Keras Datasets module with extra ones.",
10
author="Christian Versloot",
11
author_email="[email protected]",
12
url="https://github.com/christianversloot/extra_keras_datasets",
13
download_url=("https://github.com/christianversloot/"
14
"extra_keras_datasets/archive/{{VERSION}}.tar.gz"),
15
keywords=["keras", "datasets", "machine learning"],
16
install_requires=["numpy", "scipy", "pandas", "scikit-learn"],
17
classifiers=[
18
"Development Status :: 5 - Production/Stable",
19
"Intended Audience :: Developers",
20
"Topic :: Software Development :: Build Tools",
21
"License :: OSI Approved :: MIT License",
22
"Programming Language :: Python :: 3.6",
23
"Programming Language :: Python :: 3.7",
24
"Programming Language :: Python :: 3.8",
25
"Programming Language :: Python :: 3.9",
26
],
27
)
28
29