forked from python-postgres/fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.28 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
#!/usr/bin/env python3 -m validate_pyproject
# Consistent with postgresql.project and postgresql.release.distutils.
[build-system]
requires = ["setuptools >= 0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-postgresql"
version = "1.3.1"
description = "Query PostgreSQL databases using Python and the PQv3 protocol."
readme = "README.md"
license.file = "LICENSE"
authors = [
{ name = "James William Pye", email = "james.pye@gmail.com" },
]
maintainers = [
{ name = "James William Pye", email = "james.pye@gmail.com" },
]
requires-python = ">=3.7"
keywords = ["syncpg", "postgres", "postgresql", "sql", "driver"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Attribution Assurance License",
"License :: OSI Approved :: Python Software Foundation License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Database",
]
dependencies = []
[project.urls]
Documentation = "http://py-postgresql.readthedocs.io"
Issues = "https://github.com/python-postgres/fe/issues"
Source = "https://github.com/python-postgres/fe"