-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
35 lines (32 loc) · 996 Bytes
/
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
from setuptools import setup, find_packages
import sc2bench
with open('README.md', 'r') as f:
long_description = f.read()
description = 'SC2 Benchmark: Supervised Compression for Split Computing.'
setup(
name='sc2bench',
version=sc2bench.__version__,
author='Yoshitomo Matsubara',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/yoshitomo-matsubara/sc2-benchmark',
packages=find_packages(exclude=('configs', 'resources', 'script', 'tests')),
python_requires='>=3.9',
install_requires=[
'torch>=2.0.0',
'torchvision>=0.15.1',
'numpy',
'pyyaml>=6.0.0',
'scipy',
'cython',
'pycocotools>=2.0.2',
'torchdistill>=1.0.0',
'compressai>=1.2.3',
'timm>=1.0.3'
],
extras_require={
'test': ['pytest'],
'docs': ['sphinx', 'sphinx_rtd_theme', 'sphinxcontrib-youtube']
}
)