forked from web2py/pydal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
21 lines (19 loc) · 905 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[project]
name = "pydal"
version = "20240601.3"
authors = [{ name="Massimo Di Pierro", email="[email protected]" },]
description = 'pyDAL is a Database Abstraction Layer. It generates queries for SQlite, PotsgreSQL, MySQL, and other backends. It was originally part of the web2py frameworks but it is now an independent project. Example: db.define_table("thing",Field("name")) and db.thing.insert(name="Pizza")'
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/web2py/pydal"
"Bug Tracker" = "https://github.com/web2py/pydal/issues"
"Documentation" = "https://py4web.com/_documentation/static/en/chapter-07.html"