-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (53 loc) · 1.73 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
55
56
57
58
59
60
61
62
63
64
[project]
name = "ofds_consolidation_tool"
version = "0.1.0"
requires-python = ">=3.8"
authors = [
{name = "ODSC", email = "[email protected]"}
]
description = "A tool to consolidate multiple fibre network datasets formatted using the Open Fibre Data Standard"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["open", "fibre", "data", "standard", "ofds", "consolidation", "tool", "gis", "qgis"]
# See: https://pypi.org/classifiers/
classifiers = [
# Development Status
"Development Status :: 2 - Pre-Alpha",
# Environment
"Environment :: Plugins",
# Indicate who your project is intended for
"Intended Audience :: Telecommunications Industry",
"Topic :: Desktop Environment",
"Topic :: Scientific/Engineering :: GIS",
# License
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Repository = "https://github.com/Open-Telecoms-Data/ofds_consolidation_tool"
[tool.pytest.ini_options]
addopts = "-v --tb=short --cov=."
testpaths = [
"tests"
]
[tool.black]
line-length = 88
force-exclude = "gui.py" # gui.py is generated by pyuic5, so don't format it
[tool.isort]
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#isort
profile = "black"
extent_skip_glob = [".cache/*", "gui.py"]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
check_untyped_defs = true
exclude = [
"gui.py",
"_lib/jellyfish/_jellyfish.py",
]