-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (38 loc) · 1.01 KB
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
[build-system]
requires = [
"setuptools",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[project]
name = "flatdraw"
authors = [
{ name = "Hannes Weichelt", email = "main@hweichelt.de" },
]
description = "Draw your flatland environments"
requires-python = ">=3.12"
license = {file = "LICENSE"}
dynamic = [ "version" ]
readme = "README.md"
dependencies = [
"Flask>=3.1",
"Pillow>=11.1.0",
"numpy>=2.2",
"clingo>=5.7.1",
]
[project.urls]
Homepage = "https://github.com/hweichelt/flatdraw.git"
[project.optional-dependencies]
format = [ "black", "isort", "autoflake" ]
lint_pylint = [ "pylint" ]
typecheck = [ "types-setuptools", "mypy" ]
test = [ "coverage[toml]" ]
doc = [ "sphinx", "furo", "nbsphinx", "sphinx_copybutton", "myst-parser" ]
dev = [ "readmd[test,typecheck,lint_pylint]" ]
[project.scripts]
flatdraw = "flatdraw.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"