Files
confsync/app/pyproject.toml
7000pctAUTO a5f73277d5
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
Initial upload of ConfSync project
2026-02-04 20:00:28 +00:00

49 lines
1.2 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "confsync"
version = "0.1.0"
description = "Intelligent Developer Configuration Sync CLI"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"typer>=0.9.0",
"pyyaml>=6.0",
"gitpython>=3.1.0",
"cryptography>=41.0.0",
"pathlib2>=2.3.0",
"rich>=13.0.0",
"toml>=0.10.0",
"configparser>=5.3.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0.0", "pytest-cov>=4.0.0"]
[project.scripts]
confsync = "confsync.main:main"
[tool.setuptools.packages.find]
include = ["confsync*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
[tool.setuptools.package-data]
confsync = ["py.typed"]