-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
50 lines (46 loc) · 1.48 KB
/
setup.cfg
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
[metadata]
name = pyopenxr
version = attr: xr.version.__version__
author = Christopher M. Bruns
author_email = [email protected]
description = Unofficial python bindings for OpenXR VR/AP device access
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/cmbruns/pyopenxr
project_urls =
Bug Tracker = https://github.com/cmbruns/pyopenxr/issues
classifiers =
Environment :: Win32 (MS Windows)
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Topic :: Multimedia :: Graphics :: 3D Rendering
Topic :: Scientific/Engineering :: Visualization
Development Status :: 4 - Beta
[options]
install_requires =
glfw
numpy
PyOpenGL
; setuptools is needed for pkg_resources
setuptools
package_dir =
=src
packages = xr, xr.library, xr.platform, xr.api_layer, xr.api_layer.windows, xr.api_layer.linux, xr.extension
; 3.5 does not support f-strings
python_requires = >=3.6
[options.package_data]
* = *.dll, *.so, *.json
[options.extras_require]
generate =
clang
; clang for parsing C code
setuptools
; setuptools for pkg_resources
test = pytest
[nosetests]
traverse-namespace=1