This repository was archived by the owner on Oct 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "notional"
version = "0.8.2"
description = "A high-level interface for the Notion SDK."
license = "MIT"
authors = ["Jason Heddings <[email protected]>"]
repository = "https://github.com/jheddings/notional/"
documentation = "https://jheddings.github.io/notional/"
readme = "README.md"
classifiers=[
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8.1"
notion-client = "^2.2.1"
pydantic = "^1.10.18"
html5lib = "^1.1"
urllib3 = "^1.26.20"
emoji = "^2.13.2"
[tool.poetry.group.dev.dependencies]
GitPython = "^3.1.43"
pre-commit = "^3.5.0"
pytest = "^8.3.3"
coverage = "^7.6.1"
pytest-vcr = "^1.0.2"
mypy = "^1.11.2"
ruff = "^0.6.8"
black = "^24.8.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocstrings = "^0.25.1"
mkdocs-material = "^9.5.39"
mkdocstrings-python = "^1.10.9"
[tool.black]
line_length = 88
[tool.ruff.lint]
select = [
"I", # isort
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"C", # flake8-comprehensions
"B", # flake8-bugbear
"G", # flake8-logging-format
"RET", # flake8-return
"ERA", # eradicate
"UP", # pyupgrade
]
ignore = [
"E501", # line-too-long
]
[tool.ruff.lint.isort]
known-first-party = ["notional"]
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"