-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
71 lines (65 loc) · 1.49 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyBADA"
version = "0.1.2"
authors = [
{ name="Henrich Glaser-Opitz", email="henrich.glaser-opitz@eurocontrol.int" }
]
description = "pyBADA"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)"
]
dependencies = [
"scipy>=1.11",
"numpy>=1.26",
"pandas>=2.2",
"simplekml>=1.3",
"XlsxWriter>=3"
]
license = { text = "EUPL-1.2" }
# Some additional deps not needed to run the package but to develop on it
# linter, formatter, to build the docs, ..
[project.optional-dependencies]
dev = ["black==23.9.1",
"flake8==6.1.0",
"sphinx-rtd-theme==2.0.0",
"Sphinx==7.4.7",
"pre-commit==3.8.0",
"sphinx-gallery==0.17.1",
"matplotlib==3.9.2",
"folium==0.17.0",
"pytest==8.3.3",
"build",
"twine"
]
[project.urls]
"Homepage" = "https://github.com/eurocontrol/pybada"
[tool.black]
target-version = ['py312']
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| docs
| dist
)/
'''
[tool.hatch.build.targets.wheel]
packages = ["src/pyBADA"]
[tool.hatch.build.targets.wheel.force-include]
"src/aircraft/BADA3/DUMMY" = "pyBADA/aircraft/BADA3/DUMMY"
"src/aircraft/BADA4/DUMMY" = "pyBADA/aircraft/BADA4/DUMMY"
"src/aircraft/BADAH/DUMMY" = "pyBADA/aircraft/BADAH/DUMMY"
"src/data" = "pyBADA/data"