-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 988 Bytes
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 988 Bytes
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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "graintools"
version = "0.1"
authors = [
{name = "Sergio Bongiorno", email = "sergiobng@proton.me"},
]
description = "Grain segmentation from Laue patterns"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
dependencies = [
"numpy",
"multiprocess",
"scikit-learn",
"tqdm",
"numba",
"matplotlib",
"opencv-python",
"h5py",
"pandas",
"ipykernel",
"ipympk",
"jupyter",
"lauetools==3.1.19"
]
[project.optional-dependencies]
full = [
"lauetools",
"jupyter",
"ipympl",
"ipykernel"
]
[tool.setuptools.packages.find]
include = ["graintools", "graintools.*"]
namespaces = false
[project.urls]
Homepage = "https://github.com/serbng/graintools"
Issues = "https://github.com/serbng/graintools/issues"