Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
Real-ESRGAN
Commits
7db57974
Commit
7db57974
authored
Sep 25, 2022
by
boomb0om
Browse files
Add setup script
parent
6e1307b4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
.gitignore
.gitignore
+4
-0
setup.py
setup.py
+20
-0
No files found.
.gitignore
View file @
7db57974
build/
dist/
*.egg-info/
__pycache__/
.ipynb_checkpoints/
setup.py
0 → 100644
View file @
7db57974
import
os
import
pkg_resources
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"RealESRGAN"
,
py_modules
=
[
"RealESRGAN"
],
version
=
"1.0"
,
description
=
""
,
author
=
"Sberbank AI, Xintao Wang"
,
url
=
'https://github.com/ai-forever/Real-ESRGAN'
,
packages
=
find_packages
(
include
=
[
'RealESRGAN'
]),
install_requires
=
[
str
(
r
)
for
r
in
pkg_resources
.
parse_requirements
(
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"requirements.txt"
))
)
]
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment