-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (55 loc) · 1.65 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
[build-system]
# `license = "MIT"` below is PEP 639, which needs setuptools 77 or newer.
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "libigc"
version = "1.2.0"
description = "A library for parsing IGC files and extracting thermals"
readme = "README.md"
license = "MIT"
authors = [{ name = "Suraj Mandal", email = "dev@mandalsuraj.com" }]
requires-python = ">=3.12"
dependencies = ["simplekml>=1.3.1"]
keywords = [
"igc",
"paragliding",
"gliding",
"soaring",
"flight-analysis",
"thermal-detection",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/surajmandalcell/libigc"
[project.optional-dependencies]
dev = ["twine", "bump-my-version", "pytest", "ruff"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff.lint]
# pycodestyle, pyflakes, isort, pyupgrade, bugbear.
select = ["E", "F", "I", "UP", "B"]
[tool.bumpversion]
current_version = "1.2.0"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "src/libigc/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'