-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.67 KB
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
[tool.poetry]
name = "runtime-config-py"
version = "0.0.8"
description = "Library for runtime updating project settings."
license = "MIT"
authors = ["Aleksey Petrunnik <petrunnik.a@gmail.com>"]
maintainers = ["Aleksey Petrunnik <petrunnik.a@gmail.com>"]
repository = "https://github.com/runtime-config/runtime-config-py"
packages = [{ include = "runtime_config", from = "src" }]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.8, <3.12"
aiohttp = { version = "^3.8.1", optional = true }
pydantic = ">=1.5.0, <2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.18.3"
pytest-mock = "^3.10.0"
pytest-cov = "^3.0.0"
autopep8 = "^1.6.0"
black = "^22.12.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
mypy = "0.971"
pre-commit = "^2.20.0"
[tool.poetry.extras]
aiohttp = ["aiohttp"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = ['./src']
testpaths = ["tests"]
[tool.black]
target_version = ['py38']
line-length = 119
skip_string_normalization = true
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.8"
disallow_any_generics = true
disallow_untyped_defs = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"