-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.47 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
[project]
name = "pywerami"
version = "0.3.0"
description = "pywerami is a stand-alone program to make an countour/3D plot from a contour data file generated by the Perple_X program WERAMI."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["petrology", "Perple_X"]
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", "qtpy", "scipy"]
[project.optional-dependencies]
pyqt5 = ["pyqt5"]
pyqt6 = ["pyqt6"]
docs = ["sphinx", "sphinx_mdinclude", "sphinx_rtd_theme"]
tests = ["pytest"]
dev = ["pywerami[pyqt6,docs,tests]", "black"]
[project.urls]
Homepage = "https://github.com/ondrolexa/pywerami"
Documentation = "https://pywerami.readthedocs.io/"
Repository = "https://github.com/ondrolexa/pywerami.git"
Issues = "https://github.com/ondrolexa/pywerami/issues"
Changelog = "https://github.com/ondrolexa/pywerami/blob/master/CHANGELOG.md"
[project.gui-scripts]
pywerami = "pywerami.mainapp:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 88
extend-exclude = '''.*ui_.*'''