-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BUILD Update the pyproject.toml for accelerate
- Loading branch information
Showing
4 changed files
with
61 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Acceleration code for PyOpenGL | ||
|
||
This set of C (Cython) extensions provides acceleration of common operations | ||
for slow points in PyOpenGL 3.x. It is not a requirement for using PyOpenGL | ||
but performance without it will be poor. | ||
|
||
## Build Process | ||
|
||
Cython is updated frequently to support newer versions of Python. As of | ||
release 3.1.9 we no longer check in the Cython generated code for the | ||
wrapper modules, relying on the build machines to generate the wrappers. | ||
|
||
The Github CI Pipeline should generate and release binary builds for most | ||
major platforms (Windows, Linux, Mac), but if you need to build from source, | ||
a `pip install .` **should** work from the PyOpenGL repository. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,49 @@ | ||
[project] | ||
name="PyOpenGL-accelerate" | ||
dynamic=["version"] | ||
description = "Cython-coded accelerators for PyOpenGL" | ||
authors = [ | ||
{name="Mike C. Fletcher",email="[email protected]"}, | ||
] | ||
readme = {file="README.md", content-type = "text/markdown"} | ||
license={file="license.txt"} | ||
keywords = [ | ||
"Graphics", | ||
"3D", | ||
"OpenGL", | ||
"GLU", | ||
"GLUT", | ||
"GLE", | ||
"GLX", | ||
"EXT", | ||
"ARB", | ||
"Mesa", | ||
"PyOpenGL", | ||
] | ||
classifiers = [ | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Multimedia :: Graphics :: 3D Rendering", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Intended Audience :: Developers", | ||
] | ||
[project.urls] | ||
Homepage = "https://mcfletch.github.io/pyopengl/" | ||
Download = "https://pypi.org/project/PyOpenGL-accelerate/" | ||
Source = "https://github.com/mcfletch/pyopengl" | ||
Documentation = "https://mcfletch.github.io/pyopengl/documentation/index.html" | ||
|
||
[build-system] | ||
requires = [ "setuptools >= 42.0", "Cython >= 0.28", "numpy" ] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "OpenGL_accelerate.__version__"} | ||
|
||
[tool.setuptools.packages.find] | ||
namespaces=false | ||
include=["OpenGL_accelerate"] | ||
exclude=["tests","src"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters