-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 820 Bytes
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
[tool.poetry]
name = "arcli"
version = "0.1.1"
description = "A TravisCI inspired builder"
authors = ["Guilherme Scaranse"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/guiscaranse/arcli"
homepage = "https://github.com/guiscaranse/arcli"
keywords = ["build", "travisci", "arcli"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.0"
PyYAML = "^5.1.2"
pydantic = {extras = ["ujson"], version = "^0.31.1"}
semantic_version = "^2.6.0"
gitpython = "^2.1.13"
colorama = "^0.4.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
arcli = "arcli.terminal.cli:cli"