-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (49 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
60 lines (49 loc) · 1.5 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=61.0", "wheel", "portalocker", "cryptography"]
build-backend = "setuptools.build_meta"
[project]
name = "DictSQLite"
description = "You can handle basic SQLite operations in Python like Dict."
readme = { file = "pypi_builder/Pypi.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Disnana", email = "support@disnana.com" }
]
maintainers = [
{ name = "Disnana", email = "support@disnana.com" }
]
keywords = [
"sqlite",
"dict",
"database",
"dict_like",
"dict like",
"dictsqlite",
"dict like sqlite"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"portalocker",
"cryptography"
]
# setup.py の VERSION = dictsqlite.main.__version__ と等価
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/disnana/DictSQLite"
Download = "https://github.com/disnana/DictSQLite"
[tool.setuptools.dynamic]
version = { attr = "dictsqlite.main.__version__" }
# setup.py の find_packages(include=["dictsqlite", "dictsqlite.*"]) と等価
[tool.setuptools.packages.find]
include = ["dictsqlite", "dictsqlite.*"]
# extras_require は空のため未設定(setup.py と同等)