-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (36 loc) · 1.13 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
# Package File For ImageUpscaler
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
install_requires = [
'opencv-python==4.10.0.84',
'pillow==10.3.0',
'pyfiglet==1.0.2',
'scipy==1.13.1',
'realesrgan==0.3.0'
]
setup(
name='ImageUpscaler',
version='3.1',
packages=find_packages(where='imageUpscaler'),
package_dir={'': 'imageUpscaler'},
include_package_data=True,
install_requires=install_requires,
entry_points={
'console_scripts': [
'imageUpscaler=run:main',
],
},
author='Aas1kk',
author_email='[email protected]',
description='A package for upscaling images using neural networks.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/aa-sikkkk/ImageUpscaler',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)