Initial upload of ConfSync project
Some checks failed
CI / test (push) Failing after 6s
CI / build (push) Has been skipped

This commit is contained in:
2026-02-04 20:00:31 +00:00
parent 28e949dc34
commit 3a259af1b3

34
app/setup.py Normal file
View File

@@ -0,0 +1,34 @@
"""Setup script for ConfSync."""
from setuptools import setup, find_packages
setup(
name="confsync",
version="0.1.0",
description="Intelligent Developer Configuration Sync CLI",
author="ConfSync Team",
python_requires=">=3.9",
packages=find_packages(),
install_requires=[
"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",
],
extras_require={
"dev": ["pytest>=7.0.0", "pytest-cov>=4.0.0"],
},
entry_points={
"console_scripts": [
"confsync=confsync.main:main",
],
},
include_package_data=True,
package_data={
"confsync": ["py.typed"],
},
)