dawn-bench-models/pytorch/CIFAR10/setup.py

22 lines
494 B
Python
Raw Normal View History

2017-08-17 12:43:17 -06:00
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': [
'cifar10 = benchmark.cifar10.__main__:cli',
'imagenet = benchmark.imagenet.__main__:cli'
2017-08-17 12:43:17 -06:00
]
},
install_requires=[
'tqdm',
2017-08-17 12:43:17 -06:00
'torchvision',
'click',
]
)