-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.1 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
[tool.poetry]
name = "inception-cli"
version = "0.2.0-dev"
readme = "README.md"
# homepage = "https://github.com/inception-project/inception-cli"
repository = "https://github.com/inception-project/inception-cli"
# documentation = "https://github.com/inception-project/inception-cli"
description = "INCEpTION command line tool"
authors = [ "The INCEpTION Project" ]
maintainers = [ "Richard Eckart de Castilho" ]
keywords = [ "INCEpTION" ]
license = "Apache-2.0"
packages = [
{ include = "inception/cli" },
]
[tool.poetry.dependencies]
python = "^3.8"
click = "8.1.7"
pycaprio = "0.3.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
pytest-mock = "*"
requests-mock = "*"
flake8 = "*"
black = { version = "*", allow-prereleases = true }
coverage = "*"
mkdocs = "^1.0"
pytest-cov = "^3.0"
codecov = "^2.1"
bump2version = "^0.5.11"
[tool.poetry.group.dev.dependencies]
Jinja2 = "^3.1.3"
[tool.black]
line-length = 120
target_version = ['py38']
[tool.poetry.plugins."console_scripts"]
inception-cli = "inception.cli.main:cli"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"