-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (58 loc) · 1.88 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
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "repraxis"
description = "An in-memory logic database solution for games, based on Versu's Praxis language."
authors = [{ name = "Shi Johnson-Bey", email = "[email protected]" }]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.9"
keywords = [
"database",
"logic programming",
"praxis",
"versu",
"exclusion logic",
"games",
]
license = { file = "LICENSE.md" }
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Sociology",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
[project.optional-dependencies]
development = ["isort", "black", "black[d]", "build", "pytest", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/ShiJbey/RePraxisPy"
Documentation = "https://github.com/ShiJbey/RePraxisPy/blob/main/README.md"
Repository = "https://github.com/ShiJbey/RePraxisPy.git"
Issues = "https://github.com/ShiJbey/RePraxisPy/issues"
Changelog = "https://github.com/ShiJbey/RePraxisPy/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = { attr = "repraxis.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = "repraxis"
src_paths = ["src/repraxis", "tests"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
[tool.pyright]
reportMissingTypeStubs = "none"