Files
statsman/pyproject.toml
Exil Productions 640301e4e3 Initial Commit
2025-12-04 14:47:12 +01:00

63 lines
1.6 KiB
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "statsman"
version = "0.1.2"
description = "A real-time terminal-based system monitoring tool with ASCII visualizations"
authors = [{name = "Exil Productions", email = "exil.productions.business@gmail.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
]
dependencies = [
"psutil>=5.9.0",
"rich>=13.0.0",
"click>=8.0.0",
]
[project.scripts]
statsman = "statsman.cli:main"
[project.urls]
Homepage = "https://exil.dev"
Repository = "https://github.com/ExilProductions/statsman"
Issues = "https://github.com/ExilProductions/statsman/issues"
[project.optional-dependencies]
dev = [
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true