-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.11 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
[tool.poetry]
name = "metadataschemas"
version = "0.1.0"
description = ""
authors = ["Mehmood Asghar <[email protected]>", "Gordon Blackadder <[email protected]>"]
readme = "README.md"
packages = [
{ include = "*_schema.py", from = "pydantic_schemas", to = "metadataschemas"},
{ include = "metadata_manager.py", from = "pydantic_schemas", to = "metadataschemas"},
{ include = "utils", from = "pydantic_schemas", to = "metadataschemas"},
]
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.2.2"
numpy = "^2.1.0"
pydantic = "^2.8.0"
openpyxl = "^3.1.5"
certifi = "^2024.8.30"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pre-commit = "^3.7.1"
isort = "^5.13.2"
ruff = "^0.5.0"
black = "^24.4.2"
detect-secrets = "^1.5.0"
ipykernel = "^6.29.5"
datamodel-code-generator = "^0.25.9"
[tool.ruff]
line-length = 120
fix = true
exclude = [
"pydantic_schemas/**"
]
[tool.isort]
line_length = 120
profile = "black"
[tool.black]
line-length = 120
[tool.detect-secrets]
exclude-lines = "\\s*\"image/png\": \".+\""
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"