-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.65 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
[project]
name = "apsg"
dynamic = ["version"]
description = "APSG - The package for structural geologists"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["structural geology", "stereonet", "orientation data"]
authors = [{ name = "Ondrej Lexa", email = "lexa.ondrej@gmail.com" }]
maintainers = [{ name = "Ondrej Lexa", email = "lexa.ondrej@gmail.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = ["numpy", "matplotlib", "scipy", "sqlalchemy", "pandas"]
[project.optional-dependencies]
extra = ["jupyterlab", "pyqt5"]
tests = ["pytest"]
docs = [
"sphinx",
"sphinx_rtd_theme",
"readthedocs-sphinx-search",
"ipykernel",
"nbsphinx",
"autodocsumm",
]
dev = [
"pytest",
"black",
"sphinx",
"sphinx_rtd_theme",
"readthedocs-sphinx-search",
"ipykernel",
"nbsphinx",
"autodocsumm",
]
[project.urls]
Homepage = "/~https://github.com/ondrolexa/apsg"
Documentation = "https://apsg.readthedocs.io"
Repository = "/~https://github.com/ondrolexa/apsg.git"
Issues = "/~https://github.com/ondrolexa/apsg/issues"
Changelog = "/~https://github.com/ondrolexa/apsg/blob/master/CHANGELOG.md"
[project.scripts]
iapsg = "apsg.shell:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/apsg"]
[tool.hatch.version]
path = "src/apsg/__init__.py"
[tool.black]
line-length = 88
exclude = '''
/(
\.toml
|\.sh
|\.git
|\.ini
)/
'''