forked from Nold360/libopl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.08 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyoplm",
version="0.62",
author="Nold, edisnord",
author_email="[email protected], [email protected]",
description="Tool To Manage Open-PS2-Loader USB-Drives & Games",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/edisnord/pyoplm",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"pillow==9.4.0",
"beautifulsoup4==4.12.2",
"lxml"
],
package_data={"": ["pyoplm/lib/linux64/bchunk/*"],
"": ["pyoplm/lib/linux64/binmerge/*"],
"": ["pyoplm/lib/linux64/cue2pops/*"]},
entry_points={
'console_scripts': [
'pyoplm= pyoplm:main',
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Environment :: Console"
],
)