forked from roedesh/nxstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (44 loc) · 1.47 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
46
47
48
49
50
51
from setuptools import setup, find_packages
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
# Get the version number
version = {}
with open(os.path.join(dir_path, "nxstart", "version.py")) as fp:
exec(fp.read(), version)
def readme():
with open("README.rst") as f:
return f.read()
setup(
name="nxstart",
description="Nintendo Switch homebrew project generator",
long_description=readme(),
long_description_content_type="text/markdown",
version=version["__version__"],
url="https://github.com/roedesh/nxstart",
author="Ruud Schroën",
license="MIT",
keywords="nintendo switch libnx nx homebrew project generator",
packages=find_packages(),
include_package_data=True,
install_requires=["Click"],
entry_points="""
[console_scripts]
nxstart=nxstart.cli:cli
""",
project_urls={
"Bug Reports": "https://github.com/roedesh/nxstart/issues",
"Source": "https://github.com/roedesh/nxstart",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
],
)