-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.67 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
[project]
name = "threadsafe-async"
version = "0.2.1"
authors = [
{name = "Vladimir Perekladov", email = "[email protected]"},
]
description = "Thread-safe synchronization primitives"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
dev = [
"black==23.3.0",
"flake8==6.0.0",
"Flake8-pyproject==1.2.3",
"isort==5.12.0",
"twine==4.0.2",
"build==0.10.0",
"pre-commit==3.2.2",
]
test = [
"pytest==7.3.0",
"pytest-asyncio==0.21.0",
"pytest-cov==4.0.0",
]
[project.urls]
homepage = "https://github.com/gleero/python-threadsafe-async"
documentation = "https://github.com/gleero/python-threadsafe-async/blob/main/README.md"
changelog = "https://github.com/gleero/python-threadsafe-async/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
pythonpath = ["."]
[tool.isort]
src_paths = ["tsasync", "test"]
profile = "black"
line_length = 88
include_trailing_comma = "True"
multi_line_output = 3
force_grid_wrap = 0
combine_as_imports = "True"
lines_after_imports = 2
[tool.flake8]
exclude = [".git", ".venv", ".idea", ".pytest_cache", "__pycache__"]
max-line-length = 88