-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.29 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
[tool.poetry]
name = "craterslab"
version = "0.2.8"
description = ""
license = "MIT"
authors = [
"Gustavo Viera López <[email protected]>",
"Frank Corrales Machín <[email protected]>",
]
readme = "README.MD"
homepage = "https://github.com/gvieralopez/craters"
repository = "https://github.com/gvieralopez/craters"
documentation = "https://craterslab.readthedocs.io/en/latest/"
keywords = ["craters", "depth maps", "lidar", "impacts"]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = ">=3.10"
numpy = "^1.24.0"
opencv-python = "^4.8.0"
scipy = "^1.11.1"
matplotlib = "^3.7.2"
scikit-learn = "^1.3.0"
keras = ">=3.0.0"
tensorflow = ">=2.13.0"
[tool.poetry.dev-dependencies]
isort = "^5.12.0"
black = "^23.3.0"
flake8 = "^6.0.0"
mypy = "^1.4.1"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
exclude = "venv"
[tool.flake8]
max-line-length = 88
[tool.mypy]
python_version = "3.10"
show_error_codes = true
ignore_missing_imports = true
strict = true
[tool.pytest]
addopts = "-vv --cov=your_module --cov-report=term-missing"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"