mnists/setup.py

29 lines
753 B
Python
Raw Normal View History

2018-03-14 08:16:14 -07:00
from setuptools import setup
setup(
name='mnists',
2020-03-30 10:44:56 -07:00
version='0.4.0',
2018-03-14 08:16:14 -07:00
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',
2018-03-24 03:46:57 -07:00
'Programming Language :: Python :: 3.5',
2018-03-14 08:16:14 -07:00
'Topic :: Scientific/Engineering',
]
)