-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
89 lines (84 loc) · 1.73 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
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "elva"
description = "A suite of local-first TUI realtime collaboration apps based on CRDTs."
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"real time",
"real-time",
"realtime",
"collaboration",
"sync",
"crdt",
"y-crdt",
"yjs",
"yrs",
"suite",
"local",
"local-first",
"tui",
"text",
"terminal",
]
authors = [
{ name = "ELVA Team", email = "[email protected]" },
]
maintainers = [
{ name = "Jakob Zahn", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"websockets>=13.1",
"pycrdt>=0.9.8",
"pycrdt-websocket>=0.14.2",
"anyio>=4.4.0",
"click>=8.1.7",
"rich>=13.8.0",
"emoji>=2.12.1",
"python-json-logger>=2.0.7",
"watchdog>=5.0.0",
"ldap3>=2.9.1",
"textual[syntax]>=0.82.0",
"pyperclip>=1.9.0",
"qrcode>=8.0",
"tomli-w>=1.1.0",
"tomli>=1.1.0",
]
version = "0.0.1"
[project.optional-dependencies]
dev = [
"pytest>=8.3.2",
"trio>=0.26.2",
"ruff>=0.6.3",
"isort>=5.13.2",
"build>=1.2.1",
"setuptools-scm>=8.1.0",
"tox>=4.18.0",
"twine>=5.1.1",
"mkdocs>=1.6.1",
"mkdocstrings>=0.25.2",
"textual-dev>=1.5.1",
]
# TODO complete url list
#[project.urls]
#Homepage = "https://url.to/homepage"
#Issues = "https://url.to/issues"
#Documentation = "https://url.to/docs"
#Repository = "https://url.to/repo"
#"Bug Tracker" = "https://url.to/bug-tracker"
#Changelog = "https://url.to/changelog"
logo = [
"svg-py",
"rdflib",
"numpy",
]
[project.scripts]
elva = "elva.cli:elva"
[tool.pdm]
distribution = true