-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
49 lines (41 loc) · 1.02 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
[tool.poetry]
name = "pyattck-data"
version = "2.6.3"
description = "Pyattck Data"
authors = ["Swimlane <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/swimlane/pyattck-data"
repository = "https://github.com/swimlane/pyattck-data"
classifiers = [
"Development Status :: 3 - Alpha",
]
[tool.poetry.urls]
Changelog = "https://github.com/swimlane/pyattck-data/releases"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
requests = "^2.31.0"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["pyattck_data", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.0.2"
attrs = "^23.1.0"
pendulum = "^2.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"