-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (44 loc) · 1.15 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
from pathlib import Path
from setuptools import setup
directory = Path(__file__).resolve().parent
with open(directory / "README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="studiosr",
version="0.1.14",
author="veritross",
description="PyTorch library to accelerate super-resolution research",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/veritross/studiosr",
packages=[
"studiosr",
"studiosr.data",
"studiosr.engine",
"studiosr.models",
"studiosr.utils",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
install_requires=[
"einops>=0.6.0",
"gdown==5.1.0",
"opencv-python>=4.7.0",
"scikit-image>=0.21.0",
"timm>=0.9.0",
"torch>=1.12.0",
],
extras_require={
"linting": [
"pre-commit>=3.5.0",
],
"testing": [
"pytest>=7.4.0",
"pytest-xdist>=3.5.0",
],
},
python_requires=">=3.8",
)