-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.16 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
[project]
name = "synchronicity"
version = "0.9.10"
description = "Export blocking and async library versions from a single async implementation"
readme = "README.md"
authors = [
{ name = "Modal Labs" }
]
requires-python = ">=3.8"
dependencies = [
"sigtools>=4.0.1",
"typing-extensions>=4.12.2",
]
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
exclude = ['.venv', '.git', '__pycache__', 'build', 'dist']
[tool.ruff.lint]
select = ['E', 'F', 'W', 'I']
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["synchronicity"]
extra-standard-library = ["pytest"]
[tool.hatch.build.targets.sdist]
exclude = [
".*",
]
[dependency-groups]
dev = [
"pre-commit>=3.5.0",
{include-group = "lint"},
{include-group = "test"}
]
lint = [
"mypy-extensions>=1.0.0",
"mypy>=1.13.0",
"ruff>=0.9.2",
]
test = [
"console-ctrl>=0.1.0",
"gevent>=24.2.1; python_version < '3.13'",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
]