-
Notifications
You must be signed in to change notification settings - Fork 76
/
pyproject.toml
84 lines (67 loc) · 2 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
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
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme="no-local-version"
version_file = "pyprocar/_version.py"
[project]
name = "PyProcar"
authors = [
{name = "Francisco Muñoz", email = "[email protected]"},
{name = "Logan Lang", email = "[email protected]"},
{name = "Aldo Romero", email = "[email protected]"},
{name = "Sobhit Singh", email = "[email protected]"},
{name = "Uthpala Herath", email = "[email protected]"},
{name = "Pedram Tavadze", email = "[email protected]"},
{name = "Eric Bousquet", email = "[email protected]"},
{name = "Xu He", email = "[email protected]"},
{name = "Reese Boucher"},
{name = "Freddy Farah"}
]
description = "A Python library for electronic structure pre/post-processing."
readme = {file = "README.md", content-type = "text/markdown"} # Ensure this matches the file used
license = {file = "LICENSE"}
keywords = ["materials", "science", "plotting", "electronic structure", "DFT"]
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"matplotlib",
"numpy<2.0",
"pandas",
"scikit-image",
"scikit-learn",
"scipy",
"sympy",
"pyvista",
"trimesh",
"spglib",
"seekpath",
"ase",
"PyYAML",
"gdown",
]
[project.optional-dependencies]
dev = [
"setuptools-scm",
"wheel",
"build",
"sphinx_design",
"sphinx-copybutton",
"sphinx-gallery",
"numpydoc",
"pypandoc",
"pydata-sphinx-theme",
"sphinxcontrib-yaml",
"sphinxcontrib-autoyaml",]
[project.urls]
homepage = "https://github.com/romerogroup/pyprocar"
documentation = "https://romerogroup.github.io/pyprocar/"
Issues = "https://github.com/romerogroup/pyprocar/issues"
Changelog = "https://github.com/romerogroup/pyprocar/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyprocar*"]
exclude = ["pyprocar.tests*"]