-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 819 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 819 Bytes
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
[tool.poetry]
name = "strike-api"
version = "0.2.1"
description = "A python client for the strike api"
authors = ["Thomas Cross <[email protected]>"]
readme = "README.md"
packages = [{include = "strike_api"}]
[tool.poetry.urls]
"Home Page" = "https://github.com/chmoder/strike-api"
"Bug Tracker" = "https://github.com/chmoder/strike-api/issues"
"Documentation" = "https://strike-api.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.28.1"
pydantic = "^1.10.2"
pyhumps = "^3.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
bandit = "^1.7.4"
sphinx = "^5.3.0"
black = "^22.10.0"
sphinx-rtd-theme = "^1.0.0"
pytest-recording = "^0.12.1"
autodoc-pydantic = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"