-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (53 loc) · 1.59 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
58
59
60
61
[tool.poetry]
name = "cognite-transformations-cli"
version = "2.3.11"
description = "A CLI for the Transformations service in CDF"
authors = ["Mathias Lohne <[email protected]>", "Emel Varol <[email protected]>", "Einar Marstrander Omang <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/cognitedata/transformations-cli"
packages = [
{ include="cognite", from="." },
]
[tool.black]
line-length = 120
target_version = ['py37']
include = '\.py$'
[tool.isort]
line_length=120 # corresponds to -w flag
multi_line_output=3 # corresponds to -m flag
include_trailing_comma=true # corresponds to -tc flag
skip_glob = '^((?!py$).)*$' # this makes sort all Python files
known_third_party = ["click", "dacite", "dotenv", "pytest", "regex", "sqlparse", "tabulate", "toml", "yaml"]
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.0.2"
types-retry = "^0.9.0"
tabulate = "^0.9.0"
types-tabulate = "^0.8.3"
sqlparse = ">=0.4.2,<0.6.0"
cognite-sdk = "6.39.6"
regex = "^2023.0.0"
dacite = "^1.6.0"
python-dotenv = "^1.0.0"
pyparsing = "^3.0.9"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
isort = "^5.9.2"
flake8 = "^3.9.2"
mypy = "^1.0.0"
autoflake = "=1.7.8"
pre-commit = "^3.0.0"
pytest = "^7.0.0"
pytest-cov = "^4.0.0"
Sphinx = "^7.0.0"
sphinx-rtd-theme = "^1.0.0"
twine = "^4.0.0"
types-PyYAML = "^6.0.12"
types-toml = "^0.10.8"
[tool.poetry.scripts]
transformations-cli = "cognite.transformations_cli.__main__:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"