-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (36 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (36 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>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "world-generator"
version = "0.0.1"
description = "Minecraft world generator with OSM preprocessing via osmium + GDAL/ogr2ogr"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"PyYAML>=6.0",
"pebble",
]
[project.optional-dependencies]
dev = ["mypy>=1.0", "flake8>=5.0", "black>=23.0"]
test = ["pytest>=7.0"]
[project.urls]
Homepage = "https://github.com/alicespaceli/world-generator"
Repository = "https://github.com/alicespaceli/world-generator"
[project.scripts]
world-generator = "world_generator.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
world_generator = ["py.typed"]
[tool.black]
line-length = 88
target-version = ['py39']
[tool.mypy]
python_version = "3.9"
warn_unused_ignores = true
disallow_untyped_defs = true
mypy_path = "src"
[[tool.mypy.overrides]]
module = ["PyQt5.*", "qgis.*", "processing.*"]
ignore_missing_imports = true