forked from luciasoftware/lucia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (66 loc) · 1.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from setuptools import setup, find_packages
import platform
import versioneer
def readme():
with open('README.md') as f:
return f.read()
dependencies =[
'pygame',
'pycryptodomex',
'pysoundfile',
'numpy==1.19.3',
'sound_lib',
'python-openal',
'accessible_output2',
'bson',
'versioneer',
]
if platform.system() == "Darwin":
dependencies.append("appscript")
if platform.system() == "Windows":
dependencies.append("pywin32")
dependencies.append("pypiwin32")
lucia_packages = find_packages(".")
setup(
name='lucia',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A cross platform, feature rich audio game engine written in Python.',
long_description=readme(),
long_description_content_type="text/markdown",
url='http://github.com/LuciaSoftware/lucia',
keywords=("audiogame bgt lucia python python3 luciasoftware"),
author='Lucia Software',
license='LGPL',
packages=lucia_packages,
entry_points="""
[console_scripts]
lucia.packer=lucia.cli.packer:main
lucia=lucia.cli:main
""",
setup_requires=["pytest-runner"],
tests_require=["pytest"] + dependencies,
install_requires=dependencies,
dependency_links=[
'https://github.com/accessiware/platform_utils/tarball/master#egg=platform_utils',
'https://github.com/accessiware/libloader/tarball/master#egg=libloader',
],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
'Topic :: Games/Entertainment',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)