forked from booya-at/OpenGlider
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
80 lines (70 loc) · 1.62 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
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
78
79
80
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openglider"
dynamic = ["version"]
description = "A python library for paraglider design"
readme = "README.md"
requires-python = ">=3.8"
license = "GPL-3.0-or-later"
authors = [
{ name = "airG products", email = "simon@airg.family" }
]
keywords = ["paraglider", "flying"]
classifiers = [
"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.12",
]
dependencies = [
"euklid",
"pyfoil",
"pydantic",
"svgwrite",
"numpy",
"scipy",
"ezdxf",
"ezodf",
"lxml",
"pyexcel-ods",
"packaging",
"meshpy",
"svglib",
]
[project.optional-dependencies]
gui = [
"qtpy",
"pyside6",
"qtawesome",
"qasync",
"qtmodern",
"qtconsole",
"pyqtgraph",
"matplotlib",
"vtk",
]
[project.scripts]
openglider = "openglider.gui:start_main_window"
[project.urls]
Homepage = "https://www.openglider.org"
Repository = "https://github.com/booya-at/OpenGlider"
[tool.hatch.version]
path = "openglider/version.py"
pattern = "(?s).*__version__\\s*=\\s*['\"](?P<version>[^'\"]+)['\"].*"
[tool.hatch.build.targets.wheel]
packages = ["openglider"]
[tool.hatch.build.targets.wheel.force-include]
"openglider/py.typed" = "openglider/py.typed"
[tool.uv]
dev-dependencies = [
"pytest>=7.0",
"mypy>=1.0",
]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true