summaryrefslogtreecommitdiff
path: root/dots_manager/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'dots_manager/setup.py')
-rw-r--r--dots_manager/setup.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/dots_manager/setup.py b/dots_manager/setup.py
new file mode 100644
index 0000000..d04a0e0
--- /dev/null
+++ b/dots_manager/setup.py
@@ -0,0 +1,19 @@
+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",
+ ],
+)