from setuptools import setup, find_packages setup( name="dotfiles", version="0.1.0", packages=find_packages(), install_requires=[ "jinja2", ], entry_points={"console_scripts": ["dotfiles-manager=dotfiles_manager.cli:main"]}, python_requires=">=3.8", include_package_data=True, description="A cute dotfiles manager with Jinja2 templating and GNU Stow integration", author="Your Name", classifiers=[ "Programming Language :: Python :: 3", "Operating System :: OS Independent", ], )