forked from driftingtides/hyvr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.56 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
[build-system]
# Minimum requirements for the build system to execute
requires = ["setuptools>64"]
build_backend = "setuptools.build_meta"
[project]
name = "HyVR-fork"
dynamic = ["version"]
description = "sedimentary structures virtual reality generator"
license = { file = "LICENSE" }
readme = "README.rst"
authors = [{ name = "Jeremy Bennet" }]
maintainers = [
{ name = "Vitor Cantarella"}
]
requires-python = ">= 3.10"
dependencies = [
"numpy",
"scipy",
"numba",
]
keywords = ["hydrogeology", "sediment", "simulator"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Opeating System:: POSIX :: Linux",
"Programming Language :: Python 3",
]
[project.urls]
homepage = "https://github.com/vcantarella/hyvr"
repository = "https://github.com/vcantarella/hyvr"
documentation = "in construction"
[project.optional-dependencies]
ci = [
"pytest",
"coverage",
"flake8",
]
docs = [
"hyvr[ci]",
"sphinx",
"sphinx-design",
"pydata-sphinx-theme",
"numpydoc",
"myst_nb",
]
[tools.pytest.ini_options]
python_path = [".","src","src/hyvr"]
#[tool.setuptools]
#packages = ["hyvr"]
#[tool.setuptools.packages.find]
#where = ["hyvr"] # list of folders that contain the packages (["."] by default)
#include = ["*"] # package names should match these glob patterns (["*"] by default)
[tool.setuptools.dynamic]
version = { attr = "hyvr.__version__" }
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
src_paths = ["hyvr"]
line_length = 88