-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dotctl"
version = "x.x.x"
authors = [
{ name = "Pankaj Jackson", email = "pankajackson@live.co.uk" }
]
description = "A powerful CLI tool to profile your OS by saving, applying, exporting, and importing system configurations as named profiles. Designed to manage dot files and service configurations in a centralized Git repository (local or remote), dotctl enables seamless system replication across machines. Supports pre/post hook scripts, making it ideal for setting up servers or desktops with consistent environments."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"PyYAML",
"gitpython"
]
keywords = [
"dotfiles",
"config",
"settings",
"backup",
"dotfile-manager"
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities",
]
[project.scripts]
dotctl = "dotctl.main:main"
[project.urls]
Homepage = "https://github.com/pankajackson/dotctl"
"Bug Tracker" = "https://github.com/pankajackson/dotctl/issues"
Source = "https://github.com/pankajackson/dotctl"
[tool.setuptools.package-data]
dotctl = ["templates/*.yaml", "hooks/*.sh"]