-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.32 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools~=66.1", "wheel~=0.45"]
build-backend = "setuptools.build_meta"
[project]
name = "dotfiles-py"
version = "0.1.0"
description = "A tool for managing dotfiles using Python3.11+"
authors = [{name = "Ragdata", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = ["dotfiles", "dotfile-management"]
dependencies = [
"dynaconf~=3.2",
"multipledispatch~=1.0",
"python-box[all]~=7.0",
"typer~=0.15"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Unix Shell"
]
[project.urls]
Homepage = "https://github.com/Ragdata/dotfiles-py"
Repository = "https://github.com/Ragdata/dotfiles-py"
[project.optional-dependencies]
dev = ["setuptools~=66.1", "wheel~=0.45"]
docs = ["mkdocs~=1.6", "termynal~=0.12", "mkdocs-material~=9.5"]
tests = ["pytest~=8.3"]
[tool.pytest.ini_options]
minversion = "8.3"
addopts = ["-ra -q", "--import-mode=importlib"]
pythonpath = "dotfiles_py"
testpaths = ["tests"]