-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.28 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
[project]
name = "PyUdisk"
dynamic = ["version", "dependencies"]
description = "Extensive disk monitor for Linux OS"
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Monitoring",
]
keywords = ["disk-monitor", "PyUdisk"]
requires-python = ">=3.10"
[tool.setuptools]
packages = [
"pyudisk",
"pyudisk.models",
"pyudisk.templates"
]
[tool.setuptools.package-data]
"pyudisk.templates" = ["*.html"]
[tool.setuptools.dynamic]
version = {attr = "pyudisk.version"}
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
dev = ["pre-commit"]
standard = [
"Jinja2==3.1.*",
"requests==2.*",
"gmail-connector"
]
[project.scripts]
# sends all the args to commandline function, where the arbitary commands as processed accordingly
pyudisk = "pyudisk:commandline"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/thevickypedia/PyUdisk"
Source = "https://github.com/thevickypedia/PyUdisk"