Skip to content

Commit ed27c9f

Browse files
committed
Bumped version to 0.1.2
1 parent bf5a340 commit ed27c9f

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "psqlpy"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

pyproject.toml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,37 @@ build-backend = "maturin"
55
[project]
66
name = "psqlpy"
77
requires-python = ">=3.8"
8+
keywords = [
9+
"postgresql",
10+
"psql",
11+
"async-driver",
12+
"psql-driver",
13+
"postgresql-driver",
14+
"python-driver",
15+
]
816
classifiers = [
17+
"Typing :: Typed",
18+
"Topic :: Database",
19+
"Development Status :: 4 - Beta",
920
"Programming Language :: Rust",
10-
"Programming Language :: Python :: Implementation :: CPython",
11-
"Programming Language :: Python :: Implementation :: PyPy",
21+
"Operating System :: MacOS",
22+
"Operating System :: Microsoft",
23+
"Operating System :: POSIX :: Linux",
24+
"Intended Audience :: Developers",
25+
"Topic :: Database :: Front-Ends",
1226
]
1327
dynamic = ["version"]
1428

1529
[tool.maturin]
1630
python-source = "python"
1731
module-name = "psqlpy._internal"
1832
features = ["pyo3/extension-module"]
33+
34+
[tool.poetry]
35+
name = "psqlpy"
36+
version = "0.1.2"
37+
description = "Async PostgreSQL driver for Python written in Rust"
38+
authors = ["Kiselev Aleksandr <askisele00@gmail.com>"]
39+
homepage = "https://github.com/qaspen-python/psqlpy"
40+
repository = "https://github.com/qaspen-python/psqlpy"
41+
documentation = "https://github.com/qaspen-python/psqlpy/blob/main/README.md"

0 commit comments

Comments
 (0)