-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
53 lines (47 loc) · 1.75 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
[project]
name = "bsp_tool"
version = "0.6.0"
description = "Python library for analysing .bsp files"
readme = "README.md"
requires-python=">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["bsp", "quake", "source", "cod", "titanfall", "idtech"]
authors = [
{name="snake-biscuits", email="haveanotherbiscuit@gmail.com"},
{name="BobTheBob"},
{name="rexx"}
]
maintainers = [
{name="snake-biscuits", email="haveanotherbiscuit@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment :: First Person Shooters",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"Pillow"
]
[project.optional-dependencies]
# install with pip extras sytax; for example: `$ pip install bsp_tool[test]`
test = ["pytest", "pytest_cov"]
[project.urls]
"Homepage" = "https://snake-biscuits.github.io/bsp_tool/"
"Repository" = "https://github.com/snake-biscuits/bsp_tool"
"Documentation" = "https://github.com/snake-biscuits/bsp_tool/wiki"
"Changelog" = "https://github.com/snake-biscuits/bsp_tool/blob/master/CHANGELOG.md"
"Bug Reports" = "https://github.com/snake-biscuits/bsp_tool/issues"
"Funding" = "https://ko-fi.com/bikkie"
[build-system]
requires = ["setuptools >= 40.8.0", "wheel"]
build-backend = "setuptools.build_meta"