forked from chasleslr/metabase-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 754 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
[tool.poetry]
name = "metabase-python"
version = "0.0.0"
description = "Python wrapper for interacting with the Metabase API."
authors = ["Charles Lariviere"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/chasleslr/metabase-python"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{ include = "metabase", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "*"
pandas = "^2.0.0"
[tool.poetry.dev-dependencies]
black = "22.1.0"
pytest = "^7.0.1"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"