forked from RenolY2/dolreader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 925 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 925 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
28
import dolreader
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
longDescription = fh.read()
setuptools.setup(
name='dolreader',
version=dolreader.__version__,
description='Simple python library for working with Nintendo\'s DOL format',
long_description=longDescription,
long_description_content_type="text/markdown",
url='https://github.com/JoshuaMKW/dolreader',
author='JoshuaMK',
author_email='joshuamkw2002@gmail.com',
license='GNU General Public License v3.0',
packages=setuptools.find_packages(),
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
)