-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.36 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
[project]
name = "migdalor"
description = "A cluster membership library for modern asyncio Python distributed systems running in Kubernetes"
authors = [
{name = "Roman Glushko", email = "roman.glushko.m@gmail.com"},
]
dependencies = []
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
keywords = [
"peer discovery",
"kubernetes",
"service-discovery",
"cluster-membership-management"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Networking",
"Typing :: Typed",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/roma-glushko/migdalor"
Source = "https://github.com/roma-glushko/migdalor"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
version = { source = "file", path = "migdalor/__version__.py" }
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.0.267",
"mypy>=1.3.0",
"pytest>=7.3.1",
"black>=23.3.0",
]
[tool.black]
line-length = 120
target-version = ['py39']
[tool.ruff]
line-length = 120