-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (66 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
74 lines (66 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "taskfile"
version = "0.3.82"
description = "Universal Taskfile runner with multi-environment deploy support. CI/CD agnostic — run locally or from any pipeline."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [
{name = "Tom Sapletta", email = "tom@sapletta.com"},
]
keywords = ["taskfile", "deploy", "ci-cd", "devops", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Systems Administration",
]
dependencies = [
"pyyaml>=6.0",
"click>=8.0",
"rich>=13.0",
"clickmd>=1.1.1",
"fixop>=0.1.0",
]
[project.optional-dependencies]
ssh = [
"paramiko>=3.0",
]
api = [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"pydantic>=2.0",
]
llm = [
"litellm>=1.30.0",
]
dev = [
"fastapi>=0.110.0",
"httpx>=0.27.0",
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.4.0",
"build>=1.0",
"twine>=5.0",
]
[project.scripts]
taskfile = "taskfile.cli:main"
tf = "taskfile.cli:main"
[project.urls]
Homepage = "https://github.com/pyfunc/taskfile"
Repository = "https://github.com/pyfunc/taskfile"
Issues = "https://github.com/pyfunc/taskfile/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"taskfile.scaffold" = ["templates/*.yml"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]