-
Notifications
You must be signed in to change notification settings - Fork 76
/
pyproject.toml
59 lines (52 loc) · 1.17 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pi3d"
description = "pi3d OpenGL 3D graphics library"
keywords = [
"OpenGL",
"3D",
"raspberry",
"raspi",
"graphics",
"game engine"]
authors = [
{name = "Tim Skillman"},
{name = "Paddy Gaunt"},
{name = "Tom Ritchford"},
]
maintainers = [
{name = "Paddy Gaunt"},
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.7"
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
]
dynamic = ["version"]
dependencies = [
"Pillow",
"numpy",
"pysdl2"
]
[project.urls]
"Homepage" = "http://pi3d.github.com/html/index.html"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.fs", "*.vs", "*.inc", "*.gif"]
[tool.setuptools.dynamic]
version = {attr = "pi3d.constants.__version__"}
readme = {file = ["ReadMe.rst"]}
[tool.versioneer]
VCS = "git"
style = "pep440"