-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
91 lines (83 loc) · 3.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# setup.py
#
# Copyright 2016-2022 notna <notna@apparat.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
# Distribution commands:
# python setup.py sdist bdist bdist_egg bdist_wheel
# outside venv:
# twine upload dist/*
# Test command:
# tox -- --x-display=$DISPLAY -v -m "'not graphical'"
# import peng3d.version as ver
import os
import runpy
ver = runpy.run_path(os.path.join("peng3d", "version.py"))
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
longdesc = open("README.txt", "r").read()
except Exception:
longdesc = "Python and pyglet based 3D Engine and toolkit"
setup(
name="peng3d",
version=ver["VERSION"],
description="Python and pyglet based 3D Engine and toolkit", # from the github repo
long_description=longdesc,
author="notna",
author_email="notna+gh@apparat.org",
url="https://github.com/not-na/peng3d",
packages=["peng3d", "peng3d.actor", "peng3d.gui", "peng3d.util"],
install_requires=[
"pyglet>=1.5.23",
"bidict>=0.19.0",
"typing-extensions~=4.2.0",
],
provides=["peng3d"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
)