-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.11 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["setuptools>=75.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pydgraph"
authors = [{ name = "Dgraph Labs", email = "[email protected]" }]
license = { file = "LICENSE" }
description = "Official Dgraph client implementation for Python"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Database',
'Topic :: Software Development',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dependencies = ["grpcio>=1.56.0,<2.0.0", "protobuf>=4.23.0,<6.0.0"]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "pydgraph.meta.VERSION" }
[project.optional-dependencies]
dev = ["build>=1.2.2.post1", "grpcio-tools>=1.68.0", "pytest>=8.3.3"]
[project.urls]
"Homepage" = "https://github.com/hypermodeinc/pydgraph"