-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.94 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pypsbuilder"
dynamic = ["version"]
description = "THERMOCALC front-end for constructing and analyzing PT pseudosections"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["petrology", "THERMOCALC"]
authors = [{ name = "Ondrej Lexa", email = "[email protected]" }]
maintainers = [{ name = "Ondrej Lexa", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"numpy",
"matplotlib>=3.8",
"pyqt6",
"scipy",
"shapely>=2",
"tqdm",
]
[project.optional-dependencies]
extra = ["networkx"]
docs = ["sphinx", "sphinx_mdinclude", "sphinx_rtd_theme"]
tests = ["pytest", "pytest-cov"]
dev = [
"pytest",
"pytest-cov",
"black",
"networkx",
"sphinx",
"sphinx_mdinclude",
"sphinx_rtd_theme",
]
[project.urls]
Homepage = "https://github.com/ondrolexa/pypsbuilder"
Documentation = "https://pypsbuilder.readthedocs.io"
Repository = "https://github.com/ondrolexa/pypsbuilder.git"
Issues = "https://github.com/ondrolexa/pypsbuilder/issues"
Changelog = "https://github.com/ondrolexa/pypsbuilder/blob/master/CHANGELOG.md"
[project.scripts]
ptbuilder = "pypsbuilder.psbuilders:ptbuilder"
txbuilder = "pypsbuilder.psbuilders:txbuilder"
pxbuilder = "pypsbuilder.psbuilders:pxbuilder"
psshow = "pypsbuilder.psexplorer:ps_show"
psiso = "pypsbuilder.psexplorer:ps_iso"
psgrid = "pypsbuilder.psexplorer:ps_grid"
psdrawpd = "pypsbuilder.psexplorer:ps_drawpd"
tcinit = "pypsbuilder.tcinit:tcprojinit"
[tool.hatch.version]
path = "pypsbuilder/__init__.py"
[tool.black]
line-length = 88
extend-exclude = '''.*ui_.*'''