-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 1.19 KB
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "notion-database"
version = "2.0.0"
description = "Python client for the Notion API"
readme = "README.md"
license = { text = "LGPLv3" }
authors = [{ name = "minwook-shin", email = "minwook0106@gmail.com" }]
requires-python = ">=3.10"
dependencies = ["requests>=2.33.1,<3.0"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 4 - Beta",
]
[project.urls]
Homepage = "https://github.com/minwook-shin/notion-database"
"Bug Tracker" = "https://github.com/minwook-shin/notion-database/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["notion_database*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.pylint.main]
recursive = true
[tool.pylint."messages control"]
disable = ["C0114", "C0115", "C0116"]