-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.52 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
[tool.poetry]
name = "csql"
description = "Simple library for writing composeable SQL queries"
version = "0.11.0"
authors = ["Jarrad Whitaker <[email protected]>"]
license = "LGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/akdor1154/python-csql"
repository = "https://github.com/akdor1154/python-csql"
keywords = ["sql", "analytics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Topic :: Database"
]
include = [
"LICENCE.md"
]
[tool.poetry.dependencies]
python = "^3.8"
pandas = {version = "^1.3.4", optional = true}
openpyxl = {version = "^3.0.9", optional = true}
duckdb = {version = "^0.3.1", optional = true}
ipykernel = {version = "^6.6.0", optional = true}
Sphinx = {version = "^4.3.1", optional = true}
sphinx-autobuild = {version = "^2021.3.14", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
sphinx-external-toc = {version = "^0.2.3", optional = true}
myst-parser = {extras = ["linkify"], version = "^0.16.1", optional = true}
snowflake-connector-python = {version = "^2.7.2", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
mypy = "^0.910"
pandas = {version = "^1.3.4"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.extras]
pandas = ["pandas"]
notebooks = ["openpyxl", "duckdb", "ipykernel"]
docs = ["Sphinx", "sphinx-autobuild", "sphinx-rtd-theme", "sphinx-external-toc", "myst-parser", "pandas", "snowflake-connector-python"]
[tool.pytest.ini_options]
log_cli_level="DEBUG"