-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 986 Bytes
/
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
from setuptools import setup
from os import path
DIR = path.dirname(path.abspath(__file__))
# INSTALL_PACKAGES = open(path.join(DIR, 'requirements.txt')).read().splitlines()
with open(path.join(DIR, 'README.md')) as f:
README = f.read()
setup(
name='nwunity',
packages=['nwunity'],
entry_points = {
'console_scripts': [
'nwunity = nwunity.cli:main',
],
},
description="NW-Unity is a tool for auto packing your Unity WebGL output folder to a NW.js executable folder.",
long_description=README,
long_description_content_type='text/markdown',
# install_requires=INSTALL_PACKAGES,
version='0.2.23',
url='https://github.com/zzxzzk115/NW-Unity',
author='Lazy_V',
author_email='954294627@qq.com',
keywords=['NW.js', 'GameShell', 'Unity', 'WebGL'],
# tests_require=[
# 'pytest',
# 'pytest-cov',
# 'pytest-sugar'
# ],
include_package_data=True,
python_requires='>=3'
)