-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
75 lines (68 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
72
73
74
75
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "polylx"
dynamic = ["version"]
description = "A Python package to visualize and analyze microstructures"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["geology", "microstructures"]
authors = [{ name = "Ondrej Lexa", email = "[email protected]" }]
maintainers = [{ name = "Ondrej Lexa", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"numpy",
"matplotlib",
"pandas",
"pyarrow",
"seaborn",
"networkx",
"scipy",
"shapely",
"fiona",
"pyshp",
"pyefd",
"jenkspy",
"shapelysmooth",
]
[project.optional-dependencies]
extra = ["jupyterlab"]
tests = ["pytest", "nbval"]
docs = [
"sphinx",
"sphinx_mdinclude",
"sphinx_rtd_theme",
"ipykernel",
"nbsphinx",
"nbsphinx-link",
]
dev = [
"jupyterlab",
"pytest",
"nbval",
"black",
"sphinx",
"sphinx_mdinclude",
"sphinx_rtd_theme",
"ipykernel",
"nbsphinx",
"nbsphinx-link",
]
[project.urls]
Homepage = "https://github.com/ondrolexa/polylx"
Documentation = "https://polylx.readthedocs.io/"
Repository = "https://github.com/ondrolexa/polylx.git"
Issues = "https://github.com/ondrolexa/polylx/issues"
Changelog = "https://github.com/ondrolexa/polylx/blob/master/CHANGELOG.md"
[project.scripts]
ipolylx = "polylx.shell:main"
[tool.hatch.version]
path = "polylx/__init__.py"