-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.08 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
[project]
name = "observatory"
version = "0.3.0"
description = "Observable python!"
authors = [
{ name = "Ed Whetstone" },
{name = "sharpencrag", email = "[email protected]"},
]
dependencies = [
"typing-extensions>=4.7.1",
]
requires-python = ">=3.7"
readme = "README.md"
keywords = [
"event",
"observer",
"observability",
"observables",
"pubsub",
"pub-sub",
"publish",
"subscribe",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.license]
file = "LICENSE"
[project.urls]
homepage = "https://github.com/sharpencrag/observatory"
documentation = "https://github.com/sharpencrag/observatory#readme"
repository = "https://github.com/sharpencrag/observatory"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
dev = [
"black>=23.3.0",
]