-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
44 lines (41 loc) · 1.18 KB
/
setup.cfg
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
[metadata]
name = sldl
version = attr: sldl.__version__
description = Single-line inference of SOTA deep learning models
long_description = file: README.md
long_description_content_type = text/markdown
keywords = deep learning, computer vision, super resolution, denoising
license = Apache 2.0
url = https://github.com/pilot7747/sldl
author = Nikita Pavlichenko
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Software Development
Typing :: Typed
[options]
zip_safe = True
install_requires =
einops
huggingface-hub
numpy
opencv-python
Pillow
timm
torch >= 1.8.1
tqdm
python_requires = >= 3.8
packages = find:
include_package_data = True
[options.packages.find]
include = sldl*