-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
31 lines (27 loc) · 925 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
install_requires = fh.read()
setup(
name="getnative",
version='3.2.1',
description='Find the native resolution(s) of upscaled material (mostly anime)',
long_description=long_description,
long_description_content_type="text/markdown",
author='Infi, Kageru',
author_email='[email protected], [email protected]',
url='https://github.com/Infiziert90/getnative',
install_requires=install_requires,
python_requires='>=3.6',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': ['getnative=getnative.app:main'],
}
)