generated from cognitedata/inso-extpipes-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
57 lines (47 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "inso-bootstrap-cli"
# 230802 pa: switched to keep manually in sync with
# 1. src/bootstrap/__init__.py => __version__ = "3.0.6"
# 2. action.yml => image: docker://cognite/bootstrap-cli:v3.0.6
version = "3.4.1"
description = "A CLI to deploy a CDF Project to bootstrap CDF Groups scoped with Data Sets and RAW DBs"
authors = [
"Peter Arwanitis <[email protected]>",
"Tugce Ozgur Oztetik <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/cognitedata/inso-bootstrap-cli"
packages = [{ include = "bootstrap", from = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
python-dotenv = "^0.21.1"
pydantic-settings = "^2"
dependency-injector = { version = "^4.41.0", extras = ["yaml"] }
click = "^8.1.6"
cognite-sdk = { version = "^6.39", extras = ["pandas"] }
rich = "^13"
[tool.poetry.dev-dependencies]
autopep8 = "^2.0.1"
mypy = "^1"
pre-commit = "^3"
pytest = "^7.4"
[tool.black]
line-length = 120
target_version = ['py311']
include = '\.py$'
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q -s"
pythonpath = ["src"]
testpaths = ["tests"] # , "src/bootstrap"
[tool.poetry.scripts]
bootstrap-cli = "bootstrap.__main__:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version"]
version_variable = ["src/bootstrap/__init__.py:__version__"]