-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
47 lines (38 loc) · 1.88 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
LONG_DESCRIPTION = '''
The MNIST database is available at http://yann.lecun.com/exdb/mnist/
The MNIST database is a dataset of handwritten digits. It has 60,000
training samples, and 10,000 test samples. Each image is represented
by 28x28 pixels, each containing a value 0 - 255 with its grayscale value.
It is a subset of a larger set available from NIST. The digits have been
size-normalized and centered in a fixed-size image.
It is a good database for people who want to try learning techniques and
pattern recognition methods on real-world data while spending minimal
efforts on preprocessing and formatting.
There are four files available, which contain separately train and test,
and images and labels.
Thanks to Yann LeCun, Corinna Cortes, Christopher J.C. Burges.
mnist makes it easier to download and parse MNIST files.
'''
setup(name='mnist',
description='Python utilities to download and parse the MNIST dataset',
long_description=LONG_DESCRIPTION,
url='https://github.com/datapythonista/mnist',
version='0.2.2',
author='Marc Garcia',
author_email='[email protected]',
license='BSD',
packages=['mnist'],
install_requires=['numpy'],
extras_require={':python_version=="2.7"': ['mock']},
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering'])