-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 804 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 804 Bytes
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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "PythonSQLMapper"
version = "1.3"
requires-python = ">= 3.10"
authors = [
{name = "Kenji Nishishiro", email = "marvel@programmershigh.org"},
]
description = "SQL mapping library for python."
readme = "README.pypi.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["sql", "mapper", "database", "orm", "dbapi", "sqlite", "mysql", "postgresql"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
[project.urls]
homepage = "https://github.com/marvelph/PythonSQLMapper"
[tool.setuptools]
py-modules = ["sqlmapper"]