-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.13 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
[tool.poetry]
name = "olivertwist"
version = "0.2"
description = "DBT DAG Auditor"
authors = [
"Angelos Georgiadis <angelos.georgiadis@autotrader.co.uk>",
"Paul Doran <paul.doran@autotrader.co.uk>",
"John Harrison <john.harrison@autotrader.co.uk>",
"Sam Wedge <sam.wedge@autotrader.co.uk>",
"Surbhi Verma <surbhi.verma@autotrader.co.uk>",
]
license = "Apache-2.0"
readme = "README.md"
homepage = "http://olivertwi.st"
repository = "https://github.com/autotraderuk/oliver-twist"
[tool.poetry.scripts]
olivertwist = "olivertwist.main:main"
ot = "olivertwist.main:main"
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.1.2"
networkx = "^2.5"
Jinja2 = "2.11.2"
dataclasses = {version = "^0.8", python = "~3.6"}
PyYAML = "^5.3.1"
dataclasses-jsonschema = "^2.13.0"
flake8-bugbear = "^20.11.1"
PyInquirer = "^1.0.3"
colorama = "<0.4.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2.0"
pre-commit = { version = "^2.9", python = "^3.6.1" }
black = "^20.8b1"
flake8 = "^3.8.4"
mkdocs = "^1.1.2"
mkdocs-material = "^6.2.3"
pymdown-extensions = "^8.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"