1
0
Fork 0
mirror of synced 2024-09-30 09:17:37 +13:00
Rare/setup.py

35 lines
965 B
Python
Raw Normal View History

2020-12-17 09:45:59 +13:00
import setuptools
from Rare import __version__ as version
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Rare",
version=version,
author="Dummerle",
author_email="lennardbaeumer@gmail.com",
license="GPL-3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Dummerle/Rare",
2020-12-18 00:02:25 +13:00
packages=["Rare", "Rare.utils", "Rare.Styles"],
2020-12-17 09:45:59 +13:00
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
"Operating System :: OS Independent"
],
python_requires=">=3.8",
entry_points=dict(console_scripts=["rare=Rare.Main:main"]),
install_requires=[
"legendary-gl",
"requests<3.0",
"pillow",
2020-12-17 23:54:59 +13:00
"PyQtWebEngine",
2020-12-17 09:45:59 +13:00
"setuptools",
"wheel"
]
)