-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.17 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
[project]
name = "fabric"
version = "0.0.2"
dependencies = ["click", "pycairo", "PyGObject", "loguru"]
requires-python = ">=3.11"
authors = [
{ name = "Yousef El-Darsh", email = "[email protected]" },
{ name = "Kai Read", email = "[email protected]" },
]
maintainers = [
{ name = "Yousef El-Darsh", email = "[email protected]" },
{ name = "Kai Read", email = "[email protected]" },
]
description = "Next-Gen python framework for creating system widgets on *Nix systems!"
readme = "README.md"
keywords = [
"widgets",
"gtk",
"linux",
"pygobject",
"bar",
"statusbar",
"panel",
"dock",
]
classifiers = ["Programming Language :: Python"]
[project.optional-dependencies]
system-status = ["psutil"]
[tool.setuptools.package-data]
"*" = ["*.xml", "*.js"]
[project.urls]
"Website" = "https://ffpy.org"
"Documentation" = "https://wiki.ffpy.org"
"Website (mirror)" = "https://fabric-widgets.org"
"Documentation (mirror)" = "https://wiki.fabric-widgets.org"
"Source" = "https://github.com/Fabric-Development/fabric"
"Bug Tracker" = "https://github.com/Fabric-Development/fabric/issues"
"Changelog" = "https://github.com/Fabric-Development/fabric/blob/master/CHANGELOG.md"