Files
dev-env-sync/setup.py
7000pctAUTO 65ccb51412
Some checks failed
CI / test (push) Failing after 10s
Initial commit: Dev Environment Sync v0.1.0
2026-01-30 04:06:04 +00:00

26 lines
523 B
Python

from setuptools import setup, find_packages
setup(
name="dev-env-sync",
version="0.1.0",
packages=find_packages(),
install_requires=[
"click>=8.0",
"PyYAML>=6.0",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"ruff>=0.1.0",
],
},
entry_points={
"console_scripts": [
"dev-env-sync=dev_env_sync.cli.main:main",
],
},
python_requires=">=3.8",
)