-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
67 lines (61 loc) · 1.75 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
from setuptools import setup
# from Cython.Build import cythonize
import os
def read_file(name):
with open(os.path.join(os.path.dirname(__file__), name)) as f:
return f.read()
version = '4.0b5'
shortdesc = "Uplogic utility for UPBGE."
longdesc = '\n\n'.join([read_file(name) for name in [
'README.md',
'LICENSE.md'
]])
setup(
name='uplogic',
version=version,
description=shortdesc,
long_description=longdesc,
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Graphics',
'Programming Language :: Python',
],
keywords='Blender UPBGE logic',
author='Leopold Auersperg-Castell',
author_email='[email protected]',
url='https://github.com/UPBGE/uplogic',
download_url=f'https://github.com/UPBGE/uplogic/archive/refs/tags/{version}.tar.gz',
license='GPLv2',
packages=[
'uplogic',
'uplogic.ai',
'uplogic.animation',
'uplogic.console',
'uplogic.audio',
'uplogic.data',
'uplogic.decorators',
'uplogic.events',
'uplogic.input',
'uplogic.network',
'uplogic.nodes',
'uplogic.nodes.actions',
'uplogic.nodes.conditions',
'uplogic.nodes.fmod',
'uplogic.nodes.parameters',
'uplogic.physics',
'uplogic.serialize',
'uplogic.shaders',
'uplogic.sprites',
'uplogic.ui',
'uplogic.ui.preview',
'uplogic.utils'
],
# ext_modules=cythonize([
# 'uplogic\\nodes\\__init__.pyx',
# 'uplogic\\utils\\visuals.pyx',
# 'uplogic\\nodes\\logictree.pyx'
# ]),
zip_safe=True,
install_requires=['setuptools']
)