Skip to content

Commit 44d305e

Browse files
Classifiers in pyproject.toml are added (#309)
1 parent 69cca6c commit 44d305e

2 files changed

Lines changed: 20 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[![Build Status](https://api.travis-ci.com/postgrespro/testgres.svg?branch=master)](https://travis-ci.com/github/postgrespro/testgres)
22
[![codecov](https://codecov.io/gh/postgrespro/testgres/branch/master/graph/badge.svg)](https://codecov.io/gh/postgrespro/testgres)
3-
[![PyPI version](https://badge.fury.io/py/testgres.svg)](https://badge.fury.io/py/testgres)
3+
[![PyPI package version](https://badge.fury.io/py/testgres.svg)](https://badge.fury.io/py/testgres)
4+
[![PyPI python versions](https://img.shields.io/pypi/pyversions/testgres)](https://pypi.org/project/testgres)
45

56
[Documentation](https://postgrespro.github.io/testgres/)
67

pyproject.toml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ exclude = [".git", "__pycache__", "env", "venv"]
1212
[project]
1313
name = "testgres"
1414
version = "1.13.0"
15-
requires-python = ">=3.7.17"
1615

1716
description = "Testing utility for PostgreSQL and its extensions"
1817
readme = "README.md"
@@ -31,6 +30,24 @@ keywords = [
3130
'postgresql',
3231
]
3332

33+
requires-python = ">=3.7.17"
34+
35+
classifiers = [
36+
"Intended Audience :: Developers",
37+
"Operating System :: Unix",
38+
"Programming Language :: Python :: 3 :: Only",
39+
"Programming Language :: Python :: 3.7",
40+
"Programming Language :: Python :: 3.8",
41+
"Programming Language :: Python :: 3.9",
42+
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: 3.11",
44+
"Programming Language :: Python :: 3.12",
45+
"Programming Language :: Python :: 3.13",
46+
"Programming Language :: Python :: 3.14",
47+
"Topic :: Software Development :: Libraries",
48+
"Topic :: Software Development :: Testing",
49+
]
50+
3451
dependencies = [
3552
"pg8000",
3653
"port-for>=0.4",

0 commit comments

Comments
 (0)