-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.69 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
[project]
name = "tomni"
dynamic = ["version"]
dependencies = [
"Numpy>=1.18.0, <3",
"opencv-python-headless>=4.3.0.38, <4.11.0.0",
"numpy_indexed>=0.3.5, <0.4",
"scipy>=1.4.1, <2",
"simplification>=0.6.11, <1",
"Shapely>=1.8, <3",
]
readme = "README.md"
keywords = ["crlf", "lf", "line-ending", "checker"]
license = { text = "Apache License" }
requires-python = ">=3.8"
authors = [
{ name = "Tom Nijhof" },
{ name = "Bram van der Velden", email = "[email protected]" },
{ name = "Jelle van Kerkvoorde" }
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
test = [
"black>=24.4.2,<25",
"pytest>=8.3.1,<9",
]
[project.urls]
Documentation = "https://tomni.cytosmart.com/"
Changelog = "https://github.com/cytosmart-bv/tomni/blob/main/HISTORY.rst"
Repository = "https://github.com/cytosmart-bv/tomni"
[tool.hatch.build.targets.wheel]
only-include = ["src"]
sources = ["src"]
[build-system]
requires = ["hatchling>=1.8.0", "hatch-vcs", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/tomni/__init__.py"