-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
82 lines (72 loc) · 1.84 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rosny"
description = "Lightweight library for building concurrent systems."
authors = [
{ name = "Ruslan Baikulov", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest==8.1.1",
"pytest-cov==5.0.0",
"mypy==1.9.0",
"ruff==0.3.7",
]
docs = [
"mkdocs==1.5.3",
"mkdocs-material==9.5.18",
]
examples = [
"opencv-python==4.9.0.80",
"mediapipe==0.10.9",
]
[project.urls]
Repository = "https://github.com/lRomul/rosny"
Documentation = "https://lromul.github.io/rosny"
[tool.setuptools.dynamic]
version = { attr = "rosny.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = ["rosny"]
[tool.pytest.ini_options]
minversion = 6.0
addopts = "--cov=rosny"
testpaths = ["tests"]
[tool.mypy]
files = [
"rosny",
"tests",
"examples",
]
[tool.ruff]
line-length = 89
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]