This repository has been archived by the owner on May 14, 2024. It is now read-only.
forked from CannonLock/nbmg_download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (57 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
76
77
78
## Project requirements (PEP 518, https://python-poetry.org/).
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.black]
line-length = 96
target-version = ["py39", "py310", "py311", "py312"]
[tool.isort]
line_length = 96
profile = "black"
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
check_untyped_defs = true
strict_optional = true
no_implicit_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
color_output = false
pretty = true
show_error_codes = true
incremental = true
sqlite_cache = true
[tool.poetry]
name = "macrostrat.map_ingestion"
version = "0.0.1"
description = "Scripts for ingesting maps into Macrostrat"
license = "Apache-2.0"
authors = [
"Brian Aydemir <[email protected]>",
"Cannon Lock <[email protected]>",
]
repository = "https://github.com/brianaydemir/macrostrat-map-ingestion"
packages = [{ include = "macrostrat" }]
[tool.poetry.dependencies]
python = "^3.11"
beautifulsoup4 = "~4.12"
requests = "~2.31"
"macrostrat.cli" = { path = "vendor/macrostrat/cli", develop = true }
"macrostrat.core" = { path = "vendor/macrostrat/core", develop = true }
"macrostrat.map_integration" = { path = "vendor/macrostrat/map-integration", develop = true }
[tool.poetry.group.dev.dependencies]
bandit = "~1.7"
black = "~24.4"
docutils = "~0.21"
isort = "~5.13"
mypy = "~1.10"
pre-commit = "~3.7"
pylint = "~3.1"
types-beautifulsoup4 = "~4.12"
types-requests = "~2.31"
[tool.pylint.messages-control]
max-line-length = 96
disable = "invalid-name,missing-class-docstring,missing-function-docstring"