-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (60 loc) · 1.32 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
68
69
70
71
72
73
74
75
76
77
# ###########################################
#
# Project
#
[project]
name = "lst-utils"
authors = [
{ name="Pierre M.", email="[email protected]" },
]
description = "Living Scenery Tecnology Utilities"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment :: Simulation",
]
requires-python = ">=3.10"
dynamic = [
"version"
]
[project.urls]
Homepage = "https://devleaks.github.io/lst-utils/"
Issues = "https://github.com/devleaks/lst-utils/issues"
Source = "https://github.com/devleaks/lst-utils"
[project.scripts]
lst-generator-cli = "src:generator.main"
lst-converter-cli = "src:converter.main"
lst-geojson-cli = "src:lst2geojson.main"
# ###########################################
#
# Edit
#
[tool.ruff]
line-length = 160
docstring-code-format = true
select = [
"E",
"F",
"W",
]
ignore = []
[tool.black]
line-length = 160
[tool.flake8]
max-line-length = 160
# ###########################################
#
# Build
#
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src"]