forked from Quantivio/PyNotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.1 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
[tool.poetry]
name = "pynotionclient"
version = "0.0.9-dev1"
description = "Python wrapper for Notion API"
authors = ["Vetrichelvan <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["notion", "api", "wrapper"]
packages = [{ include = "pynotionclient", from = "src" }]
repository = "https://github.com/pythonhubpy/PyNotion"
homepage = "https://github.com/pythonhubpy/PyNotion"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.1"
pydantic = "^1.10.2"
[tool.poetry.dev-dependencies]
python-dotenv = "^0.21.0"
pylint-quotes = "^0.2.3"
pytest-cov = "^4.0.0"
pytest = "^7.2.0"
pre-commit = "^2.20.0"
pylint = "^2.15.6"
mypy = "^0.982"
black = {extras = ["d"], version = "^22.10.0"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/pythonhubpy/PyNotion/issues"
[tools.pylint]
runtime-typing = true