-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.05 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
[tool.poetry]
name = "pymavlog"
version = "0.4.3"
description = "A lightweight python library to parse MavLink log files"
readme = "README.md"
license = "MIT"
authors = [
"Ricardo Martinez <[email protected]>"
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: POSIX",
"Operating System :: Unix"
]
repository = "https://github.com/rmargar/pymavlog"
[tool.poetry.dependencies]
python = "^3.7"
pymavlink = "^2.4"
numpy = "^1.21"
[tool.poetry.dev-dependencies]
pytest = "^7"
pre-commit = "^2"
pytest-cov = "^4"
coverage = "^7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
version_source = "tag"
build_command = "pip install poetry && poetry build"
repository = "pypi"
branch = "main"
commit_version_number = true