-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
44 lines (38 loc) · 897 Bytes
/
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
[build-system]
requires = ["setuptools>=70.0.0", "wheel>=0.43.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["seismostats*"]
[project]
name = "SeismoStats"
version = "0.1"
description = "Library for statistical analysis of seismicity."
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"cartopy",
"geopandas",
"jinja2",
"requests",
"scipy",
"typing_extensions",
]
[project.optional-dependencies]
dev = ["flake8", "isort", "pytest", "pytest-cov", "responses", "tox"]
doc = [
"docutils==0.19",
"sphinx",
"myst-parser",
"sphinx-autobuild",
"pandoc",
"pydata-sphinx-theme",
"nbsphinx",
"nbsphinx-link",
]
openquake = [
"openquake-engine @ git+https://github.com/gem/oq-engine.git",
"numpy < 2",
]
jupyter = ["notebook"]
[tool.setuptools.package-data]
"*" = ["*.j2"]