dawn-bench-models/pytorch/CIFAR10/setup.py
Deepak Narayanan b7e1e0fa0f First commit
2017-08-17 11:43:17 -07:00

20 lines
431 B
Python

from setuptools import setup
setup(
name='benchmark',
version='0.0.0',
url='http://www.codycoleman.com',
author='Cody Austun Coleman',
author_email='cody.coleman@cs.stanford.edu',
packages=['benchmark'],
entry_points={
'console_scripts': [
'bench = benchmark.train:main'
]
},
install_requires=[
'torchvision',
'click',
'progressbar2'
]
)