-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (38 loc) · 941 Bytes
/
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
[tool.poetry]
name = "wise-cli"
version = "0.0.4"
description = "Django deployments CLI."
authors = ["Victor Aguilar C. <vicobits@gmail.com>"]
maintainers = ["Victor Aguilar C. <vicobits@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = ""
repository = "https://github.com/victoraguilarc/wise-cli/"
documentation = "https://github.com/victoraguilarc/wise-cli/"
packages = [
{ include = "src" },
{ include = "tests" },
]
keywords = [
"Django",
"Deployment",
"Poetry",
]
[tool.poetry.dependencies]
python = "^3.8"
fabric = "*"
click = "8.1.2"
requests = "^2.27.1"
Jinja2 = "^3.1.1"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-cache = "*"
pytest-cov = "*"
ipdb = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
wise = "src.cli:main"
[tool.poetry.urls]
issues = "https://github.com/hackersandslackers/python-poetry-tutorial/issues"