-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.12 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
[build-system]
requires = ["setuptools"]
[project]
name = "structure-tensor"
requires-python = ">=3.10"
version = "0.3.3"
authors = [{ name = "Niels Jeppesen", email = "[email protected]" }]
description = "Fast and simple to use 2D and 3D structure tensor implementation for Python."
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = ["numpy>=1.20", "scipy>=1.3"]
[project.urls]
Homepage = "https://github.com/Skielex/structure-tensor"
[project.optional-dependencies]
cupy = ["cupy>=8"]
[tool.black]
line-length = 120
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true