This repository has been archived by the owner on Jul 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.56 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
40
41
42
43
44
45
from setuptools import find_packages, setup
with open("README.rst") as f:
README = f.read()
pkgs = find_packages()
pkgs.append('nitrolib.resources')
if __name__ == "__main__":
setup(
name="nitrolib",
author="martmists",
author_email="[email protected]",
license="MIT",
zip_safe=False,
version="0.0.2",
description="NitroLib is a library for working wih the various systems "
"developed by Intelligent Systems for the Nitro consoles.",
long_description=README,
url="https://github.com/NintendoDevTools/nitrolib",
packages=pkgs,
install_requires=["pyusb"],
entry_points={
# TODO: Proper CLI interface
"console_scripts": ["nitro = nitrolib.__main__:main"]
},
keywords=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware :: Hardware Drivers",
],
package_data={
"nitrolib.resources": ["*.bin"]
},
include_package_data=True,
)