Clean installation requirements in setup.py

This commit is contained in:
blackfly 2020-04-06 15:58:35 +02:00
parent a113b45a73
commit f9bc4a29c9

View File

@ -25,17 +25,13 @@ setup(name='prototorch',
'torch>=1.3.1', 'torch>=1.3.1',
'torchvision>=0.5.0', 'torchvision>=0.5.0',
'numpy>=1.9.1', 'numpy>=1.9.1',
'matplotlib',
'sklearn',
], ],
extras_require={ extras_require={
'other': [ 'examples': [
'xlrd', 'sklearn',
'pandas', 'matplotlib',
'seaborn',
'imageio',
], ],
'tests': ['pytest'], 'tests': ['unittest'],
}, },
classifiers=[ classifiers=[
'Development Status :: 2 - Pre-Alpha', 'Environment :: Console', 'Development Status :: 2 - Pre-Alpha', 'Environment :: Console',