-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (45 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (45 loc) · 1.15 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
[project]
name = "notifykit"
version = "0.3.1"
description = "A modern efficient Python toolkit for building applications that need to watch filesystem changes"
authors = [
{name = "Roman Glushko", email = "roman.glushko.m@gmail.com"},
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = '>=3.10'
readme = "README.md"
license = { file = "LICENSE" }
[project.urls]
Homepage = 'https://github.com/roma-glushko/notifykit'
[build-system]
requires = ['maturin>=0.14.16,<2']
build-backend = 'maturin'
[tool.maturin]
module-name = "notifykit._notifykit_lib"
bindings = 'pyo3'
[tool.ruff]
line-length = 120
[lint]
extend-select = ['Q']
flake8-quotes = {inline-quotes = 'double', multiline-quotes = 'double'}
[tool.mypy]
strict = true
warn_return_any = false
show_error_codes = true
[dependency-groups]
dev = [
"pytest>=9.0.2",
"mypy>=1.19.1",
"ruff>=0.15.1",
"pytest-asyncio>=1.3.0",
]
docs = [
"mkdocs-material[imaging]>=9.7.1",
"mkdocs>=1.6.1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"