blob: d04a0e0a133c49751bde2c3b31f1aa159253401c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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",
],
)
|