-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
39 lines (37 loc) · 1.28 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='ndspy',
version='4.2.0',
author='RoadrunnerWMC',
author_email='[email protected]',
description='Python library that can help you read, modify and create many types of files used in Nintendo DS games.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/RoadrunnerWMC/ndspy',
packages=setuptools.find_packages(),
package_data={
'ndspy': ['py.typed'],
},
python_requires='>=3.7',
entry_points={
'console_scripts': [
'ndspy_codeCompression = ndspy.codeCompression:main',
'ndspy_lz10 = ndspy.lz10:main',
],
},
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
extras_require={
'test': ['pytest'],
},
)