@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
name = " queryparser-python3"
7
7
description = " Parses PostgreSQL/MySQL and translates ADQL to PostgreSQL/MySQL."
8
8
readme = " README.md"
9
- version = " 0.7.0 "
9
+ dynamic = [ " version " ]
10
10
license = {text = " Apache-2.0" }
11
11
authors = [
12
12
{
name =
" Gal Matijevic" ,
email =
" [email protected] " },
@@ -15,6 +15,17 @@ maintainers = [
15
15
{
name =
" Kirill Makan" ,
email =
" [email protected] " },
16
16
]
17
17
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
+ ]
18
29
dependencies = [
19
30
" antlr4-python3-runtime==4.13.1" ,
20
31
]
@@ -25,6 +36,14 @@ test = [
25
36
" PyYAML~=6.0" ,
26
37
]
27
38
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
+
28
47
[tool .setuptools ]
29
48
packages = [
30
49
" queryparser" ,
0 commit comments