Initial upload of ConfSync project
This commit is contained in:
48
app/pyproject.toml
Normal file
48
app/pyproject.toml
Normal file
@@ -0,0 +1,48 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user