-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.17 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "fsvisual"
version = "0.0.1"
authors = [
{ name="FSvisual developers"}
]
maintainers = [
{name ="Jan Stutz", email = "stutzjan@physik.hu-berlin.de"},
{name="Martin Kuban", email = "kuban@physik.hu-berlin.de"}
]
description = "A Fermi surface visualization package"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pandas >= 2.3.1",
"numpy >= 2.3.1",
"trimesh >= 4.7.4",
"pymeshlab >= 2023.12.post3",
"scikit-image >= 0.25.2",
"requests >= 2.32.4",
"pymatgen >= 2025.6.14",
"plotly >= 6.3.0",
"shapely >= 2.1.1",
"kaleido >= 1.0.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock",
"pytest-cov",
"black>=24.0",
"flake8>=7.0",
"mypy>=1.0",
]
[project.scripts]
fsvisual = "fsvisual.cli:main"
[project.urls]
Homepage = "https://github.com/exciting/FSVisual"
Issues = "https://github.com/exciting/FSVisual/-/issues"