generated from drypy/python-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·62 lines (54 loc) · 2 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
#!/usr/bin/env python3
# This is free and unencumbered software released into the public domain.
"""Installation script for OpenXR.py."""
from codecs import open
from os import path
from setuptools import setup, find_packages
from shutil import copyfile
def readfile(*filepath):
with open(path.join(*filepath), encoding='utf-8') as f:
return f.read()
PWD = path.abspath(path.dirname(__file__))
VERSION = readfile(PWD, 'VERSION').rstrip()
LONG_DESCRIPTION = readfile(PWD, 'README.md')
setup(
name='openxr',
version=VERSION,
description="OpenXR bindings for Python.",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/drypy/openxr.py',
author='Arto Bendiken',
author_email='arto@bendiken.net',
license='Public Domain',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Software Development :: User Interfaces',
],
keywords='',
project_urls={
"Bug Tracker": 'https://github.com/drypy/openxr.py/issues',
"Documentation": 'https://github.com/drypy/openxr.py/blob/master/README.md',
"Source Code": 'https://github.com/drypy/openxr.py',
},
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'dogma.py>=0',
],
python_requires='~=3.6',
extras_require={'test': ['pytest'],},
)