-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
125 lines (98 loc) · 2.43 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
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
116
117
118
119
120
121
122
123
124
125
[build-system]
# Run dependencies are also considered as build dependencies
# due to cascading import situation in src/bfio/__init__.py
requires = [
"setuptools",
"wheel",
"imagecodecs>=2021.2.26",
"numpy",
"ome-types>=0.4.2",
"zarr>=2.6.1",
"scyjava",
"jpype1",
"tifffile>=2022.8.12",
"bfiocpp"
]
build-backend = "setuptools.build_meta"
[project]
name = "bfio"
dynamic = ["version"]
dependencies = [
"imagecodecs>=2021.2.26",
"numpy",
"ome-types>=0.4.2",
"zarr>=2.6.1",
"scyjava",
"jpype1",
"tifffile>=2022.8.12",
"bfiocpp"
]
description = "Simple reading and writing classes for tiled tiffs using Bio-Formats."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Nick Schaub", email = "nick.schaub@nih.gov"},
{name = "Sameeul Bashir Samee", email = "sameeul.samee@axleinfo.com"},
]
maintainers = [
{name = "Sameeul Bashir Samee", email = "sameeul.samee@axleinfo.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"ome_zarr",
"requests>=2.26.0"
]
[project.urls]
Documentation = "https://bfio.readthedocs.io/en/latest/"
Repository = "https://github.com/PolusAI/bfio"
[tool.setuptools.dynamic]
version = {attr = "bfio.__version__"}
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.package-data]
"*" = [
"VERSION"
]
[tool.bumpversion]
current_version = "2.4.5"
commit = true
tag = true
commit_args = "--no-verify"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\-(?P<release>[a-z]+)(?P<build>\\d+))?"
serialize = [
"{major}.{minor}.{patch}-{release}{build}",
"{major}.{minor}.{patch}"
]
[tool.bumpversion.parts.release]
optional_value = "_"
first_value = "dev"
values = [
"dev",
"_"
]
[[tool.bumpversion.files]]
filename = "src/bfio/VERSION"
search = "{current_version}"
replace = "{new_version}"
[[tool.bumpversion.files]]
filename = "requirements/requirements-base.txt"
search = "bfio=={current_version}"
replace = "bfio=={new_version}"
[[tool.bumpversion.files]]
filename = "README.md"
search = "{current_version}"
replace = "{new_version}"
[tool.codespell]
skip = "*.svg,*.html"
ignore-words-list = "utput"