-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.24 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
[tool.poetry]
name = "laika-deploy"
version = "0.8"
description = "A command-line utility for easy and reliable management of manual deployments from Git repositories"
authors = ["Eduardo Dobay <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://github.com/edudobay/laika"
repository = "https://github.com/edudobay/laika"
keywords = ["deployment", "automation", "git"]
packages = [ { include = "laika" } ]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control :: Git",
"Natural Language :: English",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
laika = "laika.cli:main"
[tool.poetry.dependencies]
python = "^3.6"
dateparser = "^0.7.0"
inquirer = "^2.7"
importlib_metadata = { version = "^2.0.0", python = "<3.8" }
pytz = "^2021.1"
[tool.poetry.dev-dependencies]
mypy = "^0.782.0"
pyflakes = "^2.1"
pytest = "^6.0"
twine = {version = "^3.2", python = "^3.6"}
wheel = "^0.35"
black = {version = "19.10b0", allow-prereleases = true, python = "^3.6"}
behave = "^1.2.6"
assertpy = "^1.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"