-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (61 loc) · 1.89 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
[tool.pytest.ini_options]
filterwarnings = [
# Numba's Python-level TypedDict accessor internally casts int32 keys
# to Python int (int64) during iteration — upstream Numba behaviour.
"ignore::numba.core.errors.NumbaTypeSafetyWarning",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "upxo"
version = "1.0.1"
description = "An open-source Python package for generation, analysis, assessment, visualisation, meshing, and export of representative polycrystalline grain structures."
readme = "README.md"
requires-python = ">=3.13"
license = "GPL-3.0-only"
authors = [
{ name = "Dr. Sunil Anandatheertha", email = "vaasu.anandatheertha@ukaea.uk" },
{ name = "Dr. Sunil Anandatheertha", email = "sunilanandatheertha@gmail.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"numpy>=2.2.6",
"scipy>=1.16.2",
"matplotlib>=3.10.6",
"pandas>=2.3.3",
"numba>=0.62.1",
"networkx>=3.5",
"pyvista[jupyter]>=0.46.3",
"scikit-image>=0.25.2",
"scikit-learn>=1.7.2",
"shapely>=2.1.1",
"tqdm>=4.67.1",
"seaborn>=0.13.2",
"colorama>=0.4.6",
"termcolor>=2.4.0",
"connected-components-3d>=3.26.1",
"xlrd>=2.0.1",
"openpyxl>=3.1.0",
"ipywidgets>=8.0.0",
]
[project.optional-dependencies]
viz = ["plotly>=5.0.0"]
mesh = ["pyvoro>=1.3.2", "tetgen>=0.8.2"]
io = ["rasterio>=1.4.3"]
ebsd = ["defdap==0.93.6"]
all = ["upxo[viz,mesh,io,ebsd]"]
[tool.setuptools.package-data]
"*" = ["*.xls", "*.xlsx", "*.m"]
[project.urls]
Repository = "https://github.com/Design-By-Fundamentals-UKAEA/UPXO"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]