-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
31 lines (28 loc) · 1.01 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
import setuptools
import pyisotools
with open("README.md", "r", encoding="utf-8") as fh:
longDescription = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as r:
requires = [x for x in r]
setuptools.setup(
name="pyisotools",
version=pyisotools.__version__,
description="Simple python library for extracting and rebuilding ISOs",
long_description=longDescription,
long_description_content_type="text/markdown",
url="https://github.com/JoshuaMKW/pyisotools",
author="JoshuaMK",
author_email="[email protected]",
license="GNU General Public License v3.0",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=requires,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)