Skip to content

Commit dc07e2d

Browse files
committed
Add pyproject.toml file.
1 parent f768eeb commit dc07e2d

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

pyproject.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/usr/bin/env python3 -m validate_pyproject
2+
# Consistent with postgresql.project and postgresql.release.distutils.
3+
[build-system]
4+
requires = ["setuptools >= 0"]
5+
build-backend = "setuptools.build_meta"
6+
7+
[project]
8+
name = "py-postgresql"
9+
version = "1.3.1"
10+
description = "Query PostgreSQL databases using Python and the PQv3 protocol."
11+
readme = "README.md"
12+
13+
license.file = "LICENSE"
14+
authors = [
15+
{ name = "James William Pye", email = "[email protected]" },
16+
]
17+
18+
requires-python = ">=3.7"
19+
keywords = ["syncpg", "postgres", "postgresql", "sql", "driver"]
20+
classifiers = [
21+
"Development Status :: 5 - Production/Stable",
22+
"Intended Audience :: Developers",
23+
"License :: OSI Approved :: BSD License",
24+
"License :: OSI Approved :: MIT License",
25+
"License :: OSI Approved :: Attribution Assurance License",
26+
"License :: OSI Approved :: Python Software Foundation License",
27+
"Natural Language :: English",
28+
"Operating System :: OS Independent",
29+
"Programming Language :: Python",
30+
"Programming Language :: Python :: 3",
31+
"Topic :: Database",
32+
]
33+
34+
dependencies = []
35+
36+
[project.urls]
37+
Documentation = "http://py-postgresql.readthedocs.io"
38+
Issues = "https://github.com/python-postgres/fe/issues"
39+
Source = "https://github.com/python-postgres/fe"

0 commit comments

Comments
 (0)