forked from realitix/vulkan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 984 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
from setuptools import setup
setup(
name='vulkan',
version='1.1.71.2',
description='Ultimate Python binding for Vulkan API',
author='realitix',
author_email='[email protected]',
packages=['vulkan'],
include_package_data=True,
install_requires=['cffi>=1.10'],
setup_requires=['cffi>=1.10'],
url='https://github.com/realitix/vulkan',
keywords='Graphics,3D,Vulkan,cffi',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
],
cffi_modules=["vulkan/vulkan_build.py:ffi"]
)