-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 788 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 788 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="libopl",
version="0.1.2",
author="Nold",
author_email="nold@gnu.one",
description="Library And Tool To Manage Open-PS2-Loader USB-Drives & Games",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nold360/libopl",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'opl= libopl.opl:main',
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Environment :: Console"
],
)