-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
45 lines (41 loc) · 971 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
[tool.poetry]
name = "notion-sdk"
version = "0.7.0"
description = "A simple and easy to use Python client for the Notion API"
authors = ["Nicolas Lecoy <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://syncr.so"
repository = "https://github.com/getsyncr/notion-sdk"
documentation = "https://getsyncr.github.io/notion-sdk"
keywords = ["api", "notion", "sdk", "python"]
packages = [{include = "notion"}]
[tool.poetry.dependencies]
python = "^3.7"
httpx = ">=0.15.0"
pydantic = {extras = ["email"], version = ">=1.7"}
[tool.poetry.dev-dependencies]
black = "^21.7b0"
flake8 = "^3.9.2"
isort = "^5.9.2"
mkdocs-material = "^7.1.11"
pre-commit = "^2.13.0"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.github
| \.venv
| \.vscode
| build
| dist
| docs
)/
'''