-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fastpg"
version = "0.0.6"
description = "A fast Postgres client library for Python"
readme = "README.md"
requires-python = ">=3.10.4"
license = { text = 'MIT' }
authors = [{ name = "Wayde Gilliam", email = "[email protected]" }]
keywords = ["python", "postgres", "asyncio", "asyncpg"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database :: Front-Ends",
]
dependencies = ["asyncpg==0.27.0"]
[project.urls]
Homepage = "https://github.com/waydegg/fastpg"
Source = "https://github.com/waydegg/fastpg"
[project.optional-dependencies]
dev = ["black", "isort", "ipdb", "ipython"]
[tool.ruff]
line-length = 88