-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (26 loc) · 840 Bytes
/
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
[tool.poetry]
name = "flight-data-calculation"
version = "4.0.2"
description = "A project for planning flights and calculating flight parameters between two airports."
authors = ["onesch <vladimiravakov12345@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["flight", "calculation", "aviation", "airport"]
homepage = "https://github.com/onesch/flight-data-calculation"
repository = "https://github.com/onesch/flight-data-calculation"
packages = [
{ include = "models", from = "src" },
{ include = "aircraft_data", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.32.3"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
flake8 = "^7.1.1"
black = "^24.10.0"
coverage = "^7.6.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"