-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "klv_parser"
version = "0.1.2"
description = "MISB 601 KLV Parser"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10, <4"
license = { text = "MIT" }
maintainers = [
{ name = "SCRIPT TACTICS LLC", email = "contact-project+script-tactics-klvpy-65068562-issue-@incoming.gitlab.com" },
]
keywords = [
"Cursor on Target",
"CoT",
"ATAK",
"TAK",
"WinTAK",
"TAK",
"TAK Server",
"KLV",
"UAS",
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
]
[project.urls]
homepage = "https://github.com/ScriptTactics/klv-parser"
"CI: GitHub Actions" = "https://github.com/ScriptTactics/klv-parser/actions"
"GitHub: issues" = "https://github.com/ScriptTactics/klv-parser/issues"
"GitHub: repo" = "https://github.com/ScriptTactics/klv-parser"
[tool.setuptools.packages.find]
include = ["*"]
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
lint.select = ["E", "F"] # Default rules for Ruff
lint.ignore = ["E203"] # Ignore specific rules
target-version = "py310" # Adjust based on your project's Python version
exclude = ["build/", "dist/"] # Exclude specific directories or files