forked from lesserkuma/FlashGBX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.37 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
42
43
44
# -*- coding: utf-8 -*-
# FlashGBX
# Author: Lesserkuma (github.com/lesserkuma)
import setuptools
with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read()
setuptools.setup(
name="FlashGBX",
version="3.37",
author="Lesserkuma",
description="Reads and writes Game Boy and Game Boy Advance cartridge data using the GBxCart RW by insideGadgets",
url="https://github.com/lesserkuma/FlashGBX",
packages=setuptools.find_packages(),
install_requires=['pyserial>=3.5', 'Pillow', 'setuptools', 'requests', 'python-dateutil'],
extras_require={
"qt5":["PySide2>=5.14"],
"qt6":["PySide6"]
},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: Qt",
"Topic :: Terminals :: Serial",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
],
project_urls={
'Source': 'https://github.com/lesserkuma/FlashGBX/',
'Tracker': 'https://github.com/lesserkuma/FlashGBX/issues',
},
entry_points={
'console_scripts': (
'flashgbx = FlashGBX.FlashGBX:main',
)
},
python_requires='>=3.7',
long_description_content_type="text/markdown",
long_description=long_description,
)