-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.01 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
[project]
name = "gremlinapi"
version = "0.19.3"
description = "Gremlin library for Python"
readme = "README.md"
license = { text = "Apache 2.0" }
authors = [{ name = "Kyle Hultman", email = "kyle@gremlin.com" }]
requires-python = ">=3.8"
dependencies = [
"requests>=2.22.0",
"urllib3>=1.25.8",
]
classifiers = [
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Homepage = "https://github.com/gremlin/gremlin-python/"
[project.scripts]
pgremlin = "gremlinapi.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["temp*.py", "test"]
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"pytest>=7.3.1",
"tox>=4.8.0",
]