-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (76 loc) · 2.29 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (76 loc) · 2.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
dynamic = ["version"]
name = "geocompy"
authors = [
{name="MrClock", email="mrclock8163@gmail.com"},
]
description = "Surveying instrument automation through GeoCOM and other protocols."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pyserial ~= 3.5.0"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Terminals :: Serial",
"Typing :: Typed"
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
keywords = ["geocom", "surveying", "leica", "totalstation", "monitoring", "automation", "gsi"]
[project.urls]
Documentation = "https://geocompy.readthedocs.io"
Repository = "https://github.com/MrClock8163/geocompy"
Issues = "https://github.com/MrClock8163/geocompy/issues"
Changelog = "https://geocompy.readthedocs.io/latest/changelog"
[dependency-groups]
testing = [
"pytest ~= 8.4.1"
]
linting = [
{include-group = "testing"},
"types-pyserial ~= 3.5.0.20250326",
"mypy >= 1.17.1",
"flake8 >= 7.3.0"
]
development = [
{include-group = "linting"}
]
documentation = [
"sphinx ~= 8.2.3",
"sphinx-notfound-page ~= 1.1.0",
"sphinx-last-updated-by-git ~= 0.3.8",
"sphinx-immaterial ~= 0.13.5",
"sphinx-mdinclude ~= 0.6.2"
]
[tool.hatch.version]
source = "vcs"
fallback-version = "0.0.0"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "src/geocompy/_version.py"
[tool.pytest.ini_options]
addopts = ["-ra", "-v", "--color=yes"]
testpaths = ["tests"]
[tool.mypy]
strict = true