-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.34 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
[tool.poetry]
name = "digy"
version = "0.2.10"
description = "Do Interactive Git deploY - Deploy Python applications from Git repositories in isolated environments with interactive menu"
authors = ["Tom Sapletta <info@softreck.dev>"]
readme = "README.md"
homepage = "https://github.com/pyfunc/digy"
repository = "https://github.com/pyfunc/digy"
documentation = "https://github.com/pyfunc/digy"
keywords = ["deployment", "git", "python", "interactive", "isolated"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=3.9"
requests = "^2.31.0"
gitpython = "^3.1.40"
click = "^8.1.7"
rich = "^13.7.0"
psutil = "^5.9.6"
readchar = "^4.0.4"
virtualenv = "^20.24.6"
docker = "^6.1.3"
pyyaml = "^6.0.1"
python-dotenv = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
black = "^23.11.0"
flake8 = "^6.1.0"
mypy = "^1.7.1"
[tool.poetry.scripts]
digy = "digy.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"