-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 1.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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kanapy"
version = "6.5.4"
description = "Kanapy: Python package for microstructure analyse and generation of microstructure models"
authors = [
{ name = "Alexander Hartmaier", email = "alexander.hartmaier@rub.de" },
{ name = "Mahesh R.G. Prasad" },
{ name = "Abhishek Biswas" },
{ name = "Golsa Tolooei Eshlaghi" },
{ name = "Ronak Shoghi" },
{ name = "Napat Vajragupta" },
{ name = "Yousef Rezek" },
{ name = "Hrushikesh Uday Bhimavarapu" }
]
readme = "README.md"
license = "AGPL-3.0-or-later"
license-files = [ "LICENSE" ]
requires-python = ">=3.9,<3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy<=2.2.6",
"matplotlib",
"scipy",
"seaborn",
"click",
"tqdm",
"jsonschema",
"requests",
"orix>=0.13",
"networkx",
"scikit-image",
]
[project.optional-dependencies]
mtex = ["kanapy-mtex>=6.5.0"]
dev = ["pytest", "pytest-mock", "pytest-cov", "black", "build", "twine"]
vis = ["pyvista>=0.43"]
[project.scripts]
kanapy = "kanapy:start"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["kanapy", "kanapy.*"]
[project.urls]
Homepage = "https://github.com/ICAMS/Kanapy"