Files
devtrace/pyproject.toml
7000pctAUTO 7baeff15ff
Some checks failed
CI / test (push) Has been cancelled
Initial commit: Add devtrace project structure
2026-01-30 09:08:20 +00:00

50 lines
1.2 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "devtrace"
version = "0.1.0"
description = "A CLI tool that automatically snapshots and indexes your entire development workflow in real-time"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "DevTrace Contributors"}
]
keywords = ["development", "workflow", "tracker", "cli", "productivity"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"watchdog>=3.0.0",
"rich>=13.0.0",
"click>=8.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.1.0",
]
[project.scripts]
devtrace = "src.main:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]