-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.5 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.5 KB
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
from setuptools import setup, Extension
module1 = Extension('pynuklearc',
sources = ['contrib/nuklear/nuklearGLFWOpenGL3.c'],
include_dirs = ['/usr/include',
'contrib/nuklear/'],
libraries = ['glfw'],
library_dirs = ['/usr/lib'],)
setup (name = 'pyNuklear',
version = '0.0.6',
description = 'Bindings to the nuklear immediate mode GUI library',
author = 'William Emerison Six',
author_email = 'billsix@gmail.com',
url = 'https://github.com/billsix/pyNuklear',
keywords = "nuklear imgui",
license = "MIT",
packages=['pynuklear',
'pynuklear/demo',
'pynuklear/demo/glfw_opengl3'],
package_dir={'pynuklear': 'src/pynuklear',
'pynuklear/demo': 'src/pynuklear/demo/',
'pynuklear/demo/glfw_opengl3': 'src/pynuklear/demo/glfw_opengl3'},
package_data={'pynuklear/demo/glfw_opengl3': ['triangle*'],
'contrib/nuklear/': ['gl3w.h'],
},
install_requires=[
'glfw',
'numpy',
'pyMatrixStack',
'PyOpenGL'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
long_description = '''
Bindings to the nuklear immediate mode GUI library. The only way to GUI.
''',
ext_modules = [module1]
)