Skip to content

Commit 83e6dc8

Browse files
committed
add more metadata to pyproject.toml
1 parent 6949c40 commit 83e6dc8

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

pyproject.toml

+20-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "queryparser-python3"
77
description = "Parses PostgreSQL/MySQL and translates ADQL to PostgreSQL/MySQL."
88
readme = "README.md"
9-
version = "0.7.0"
9+
dynamic = ["version"]
1010
license = {text = "Apache-2.0"}
1111
authors = [
1212
{name = "Gal Matijevic", email = "[email protected]"},
@@ -15,6 +15,17 @@ maintainers = [
1515
{name = "Kirill Makan", email = "[email protected]"},
1616
]
1717
requires-python = ">=3.9"
18+
classifiers = [
19+
"Development Status :: 5 - Production/Stable",
20+
"Intended Audience :: Developers",
21+
"Intended Audience :: Science/Research",
22+
"License :: OSI Approved :: Apache Software License",
23+
"Programming Language :: Python :: 3",
24+
"Programming Language :: Python :: 3 :: Only",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
28+
]
1829
dependencies = [
1930
"antlr4-python3-runtime==4.13.1",
2031
]
@@ -25,6 +36,14 @@ test = [
2536
"PyYAML~=6.0",
2637
]
2738

39+
[project.urls]
40+
Repository = "https://github.com/aipescience/queryparser.git"
41+
Issues = "https://github.com/aipescience/queryparser/issues"
42+
Changelog = "https://github.com/aipescience/queryparser/blob/master/CHANGELOG.md"
43+
44+
[tool.setuptools.dynamic]
45+
version = {attr = "queryparser.__version__"}
46+
2847
[tool.setuptools]
2948
packages = [
3049
"queryparser",

0 commit comments

Comments
 (0)