-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (98 loc) · 2.63 KB
/
pyproject.toml
File metadata and controls
115 lines (98 loc) · 2.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["poetry-core>=1.0.3"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "microjson"
version = "0.4.2"
description = "MicroJSON is a library for validating, parsing, and manipulating MicroJSON data."
readme = "README_short.md"
authors = ["Bengt Ljungquist <bengt.ljungquist@nextonicsolutions.com>"]
license = "MIT"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["json", "microscopy", "microjson"]
packages = [
{ include = "microjson", from = "src" }
]
[tool.poetry.urls]
Documentation = "https://polusai.github.io/microjson/"
Source = "https://github.com/polusai/microjson"
Tracker = "https://github.com/polusai/microjson/issues"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.27.1"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
pydantic = "^2.3.0"
geojson-pydantic = "^1.2.0"
geojson2vt = "^1.0.1"
protobuf = "^5.29.3"
geojson = "^3.1.0"
shapely = "^2.0.6"
mapbox-vector-tile = "^2.1.0"
pyarrow = "^19.0.1"
geopandas = "^1.0.1"
jsonschema = "^4.23.0"
[tool.poetry.dependencies.scikit-image]
version = "^0.20.0"
optional = true
[tool.poetry.dependencies.bfio]
version = "2.4.6"
extras = ["all"]
optional = true
[tool.poetry.dependencies.scipy]
version = ">=1.8"
optional = true
[tool.poetry.dependencies.filepattern]
version = "^2.0.1"
optional = true
[tool.poetry.dependencies.vaex-core]
version = "^4.8.0"
optional = true
[tool.poetry.dependencies.matplotlib]
version = "^3.5.1"
optional = true
[tool.poetry.extras]
all = [
"bfio",
"scipy",
"filepattern",
"vaex-core",
"scikit-image",
"matplotlib",
]
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
nox = "^2022.1.7"
datamodel-code-generator = "^0.21.4"
bumpver = "^2023.1125"
pre-commit = "^3.3.3"
black = "^23.3.0"
ruff = "^0.0.274"
mypy = "^1.4.0"
mkdocs = "^1.5.3"
mkdocstrings = "^0.23.0"
mkdocs-material = "^9.5.49"
mkdocstrings-python = "^1.13.0"
[tool.pytest.ini_options]
testpaths = ["tests/"]
pythonpath = ["src/"]
[tool.bumpver]
current_version = "0.4.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"src/microjson/__init__.py" = ["{version}"]
".bumpversion.cfg" = ["current_version = {version}"]
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git*,invalid'
check-hidden = true
ignore-regex = '^\s*"image/\S+": ".*'
# ignore-words-list = ''