28 lines
753 B
Python
28 lines
753 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='mnists',
|
|
version='0.2.1',
|
|
packages=[
|
|
'mnists',
|
|
],
|
|
|
|
author='notwa',
|
|
author_email='cloningdonor+pypi@gmail.com',
|
|
url='https://github.com/notwa/mnists',
|
|
keywords='TODO',
|
|
description='downloads and prepares various mnist-compatible datasets.',
|
|
license='MIT',
|
|
zip_safe=True,
|
|
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Intended Audience :: Science/Research',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Natural Language :: English',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Topic :: Scientific/Engineering',
|
|
]
|
|
)
|