-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 1014 Bytes
/
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
[tool.poetry]
name = "datawagon"
version = "0.3.0"
description = "Automated loading of YouTube Analytics files into a PostgreSQL database"
authors = ["JM <[email protected]>"]
license = "MIT"
readme = "readme.md"
packages = [{include = "datawagon"}]
[tool.poetry.scripts]
datawagon = "datawagon.__main__:__main__"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
click = "^8.1.3"
tabulate = "^0.9.0"
python-dotenv = "^1.0.0"
pandas = "^2.0.2"
toml = "^0.10.2"
pydantic = "^2.3"
google-cloud-storage = "^2.10.0"
jsonschema = "^4.20.0"
hologram = "^0.0.16"
[tool.poetry.group.dev.dependencies]
mypy = "^1.4.1"
flake8 = "^6.0.0"
isort = "^5.12.0"
black = "^23.3.0"
pytest-cov = "^4.1.0"
sqlalchemy-stubs = "^0.4"
types-toml = "^0.10.8.6"
pre-commit = "^3.3.3"
types-tabulate = "^0.9.0.2"
types-click = "^7.1.8"
poetry-plugin-export = "^1.6.0"
poetry-types = "^0.5.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"