-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.52 KB
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
[build-system]
requires = ["setuptools ~= 80.9.0"]
build-backend = "setuptools.build_meta"
[project]
name = "twidgets"
version = "2.1.0"
description = "A tool to design and run dynamic, customizable dashboards directly inside your terminal."
readme = "PYPI-README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [
{name = "IceWizard7", email = "mrrioes.dc@gmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Environment :: Console",
"Environment :: Console :: Curses",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Unix",
"Topic :: Terminals",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
]
dependencies = [
"psutil~=7.2.1",
"requests~=2.32.5",
"feedparser~=6.0.12",
"PyYAML~=6.0.3",
"python-dotenv~=1.2.1",
]
[project.urls]
Homepage = "https://github.com/IceWizard7/terminal-widgets"
Documentation = "https://github.com/IceWizard7/terminal-widgets/blob/main/docs/index.md"
Source = "https://github.com/IceWizard7/terminal-widgets"
Issues = "https://github.com/IceWizard7/terminal-widgets/issues"
[project.scripts]
twidgets = "twidgets.cli:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
twidgets = ["**/*.yaml", "**/*.yml", "**/*.env.example"]