-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (42 loc) · 1.1 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
[project]
name = "notifykit"
version = "0.0.8a1"
description = "A modern efficient Python toolkit for building applications that need to watch filesystem changes"
authors = [
{name = "Roman Glushko", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"anyio>=3.0.0",
]
requires-python = '>=3.8'
readme = "README.md"
license = {text = "Apache 2.0"}
[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.pdm.dev-dependencies]
dev = [
"pytest>=7.4.4",
"mypy>=1.4.1",
"ruff>=0.1.5",
"mkdocs-material[imaging]>=9.4.8",
"mkdocs>=1.5.3",
]
[tool.ruff]
line-length = 120
extend-select = ['Q']
flake8-quotes = {inline-quotes = 'double', multiline-quotes = 'double'}
[tool.mypy]
strict = true
warn_return_any = false
show_error_codes = true