forked from marcoancona/TorchPruner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 638 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(name='torchpruner',
version='0.1',
description='On-the-fly Structured Pruning for PyTorch',
url='https://github.com/marcoancona/TorchPruner',
author='Marco Ancona (ETH Zurich)',
author_email='marco.ancona@inf.ethz.ch',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'matplotlib',
'thop'
],
extras_require={
"torch": ["torch>=1.2.0"]
},
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
)