-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 815 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
35
[tool.poetry]
name = "equalexperts_dataeng_exercise"
version = "0.1.0"
description = "The Python version of the Equal Experts data engineering challenge"
authors = ["Equal Experts <data@equalexperts.com>"]
readme = "README.md"
license = "Proprietary"
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.31.0"
typer = "^0.9.0"
duckdb = "^1.0.0"
[tool.poetry.group.dev.dependencies]
rope = "^1.8.0"
mypy = "^1.3.0"
pytest = "^7.3.1"
black = "^23.3.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
pytest-cov = "^4.1.0"
autopep8 = "^2.0.2"
types-requests = "^2.31.0.1"
[tool.poetry.scripts]
exercise = "equalexperts_dataeng_exercise.scripts.exercise:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = ["__init__.py", "exercise.py", "fetch_data.py"]