-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
38 lines (32 loc) · 957 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
35
36
37
38
from setuptools import setup
import os
def read_file(name):
with open(os.path.join(os.path.dirname(__file__), name)) as f:
return f.read()
version = '2.0.dev0'
shortdesc = "Uchronian Logic: UPBGE Logic Nodes."
longdesc = '\n\n'.join([read_file(name) for name in [
'README.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 Gameengine Logic Nodes',
author='Leopold Auersperg-Castell',
author_email='[email protected]',
url='https://github.com/IzaZed/Uchronian-Logic-UPBGE-Logic-Nodes',
license='GPLv2',
packages=[
'uplogic'
],
zip_safe=True,
install_requires=['setuptools']
)