-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.34 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
[tool.poetry]
name = "cwtch"
version = "0.12.0"
description = ""
authors = ["Roman Koshel <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = []
packages = [{ include = "cwtch" }, { include = "src/*.pyx" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
include = [{ path = "cwtch/**/*.so", format = "wheel" }]
[tool.poetry.dependencies]
python = ">=3.11, <4.0"
orjson = "*"
rich = "*"
[tool.poetry.group.test.dependencies]
attrs = "*"
coverage = "*"
emval = "*"
invoke = "*"
msgspec = "*"
pydantic = "^2"
pylint = "*"
pytest = "*"
pytest-benchmark = "*"
pytest-cov = "*"
psutil = "*"
[tool.poetry.group.dev.dependencies]
ruff = "*"
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocs-material = "*"
mkdocstrings = { extras = ["python"], version = "*" }
[tool.poetry.build]
generate-setup-file = false
script = 'build.py'
[build-system]
requires = ["poetry-core", "setuptools", "cython"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
indent = 4
lines_after_imports = 2
lines_between_types = 1
src_paths = ["."]
profile = "black"
[tool.ruff]
line-length = 120