-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.46 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyTigerGraph"
version = "2.0.1"
description = "Library to connect to TigerGraph databases"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "TigerGraph Inc.", email = "support@tigergraph.com" }]
requires-python = ">=3.8"
keywords = ["TigerGraph", "Graph Database", "Data Science", "Machine Learning"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"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 = [
"validators",
"requests",
"aiohttp",
"httpx",
]
[project.optional-dependencies]
gds = ["pandas", "kafka-python", "numpy", "tqdm"]
mcp = ["pyTigerGraph-mcp"]
fast = ["orjson"]
[project.urls]
"Source" = "https://github.com/tigergraph/pyTigerGraph"
"Bug Reports" = "https://github.com/tigergraph/pyTigerGraph/issues"
"Documentation" = "https://docs.tigergraph.com/pytigergraph/current/intro/"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyTigerGraph*"]
[tool.setuptools.package-data]
"pyTigerGraph.gds" = ["**/*"]