|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The ASF licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# Unless required by applicable law or agreed to in writing, |
| 10 | +# software distributed under the License is distributed on an |
| 11 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 12 | +# KIND, either express or implied. See the License for the |
| 13 | +# specific language governing permissions and limitations |
| 14 | +# under the License. |
| 15 | + |
| 16 | +[build-system] |
| 17 | +requires = ["setuptools>=61.0", "wheel"] |
| 18 | +build-backend = "setuptools.build_meta" |
| 19 | + |
| 20 | +[project] |
| 21 | +name = "apache-age-python" |
| 22 | +version = "0.0.7" |
| 23 | +description = "Python driver support for Apache AGE" |
| 24 | +readme = "README.md" |
| 25 | +requires-python = ">=3.9" |
| 26 | +license = "Apache-2.0" |
| 27 | +keywords = ["Graph Database", "Apache AGE", "PostgreSQL"] |
| 28 | +authors = [ |
| 29 | + { name = "Ikchan Kwon, Apache AGE", email = "[email protected]"} |
| 30 | +] |
| 31 | +classifiers = [ |
| 32 | + "Programming Language :: Python :: 3.10", |
| 33 | + "Programming Language :: Python :: 3.11", |
| 34 | + "Programming Language :: Python :: 3.12", |
| 35 | + "Programming Language :: Python :: 3.13", |
| 36 | + "Programming Language :: Python :: 3.14", |
| 37 | +] |
| 38 | +dependencies = [ |
| 39 | + "psycopg", |
| 40 | + "antlr4-python3-runtime==4.11.1", |
| 41 | +] |
| 42 | + |
| 43 | +[project.urls] |
| 44 | +Homepage = "https://github.com/apache/age/tree/master/drivers/python" |
| 45 | +Download = "https://github.com/apache/age/releases" |
| 46 | + |
| 47 | +[tool.setuptools] |
| 48 | +packages = ["age", "age.gen", "age.networkx"] |
0 commit comments