-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.01 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
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "cypher-shell"
description = "Cypher Shell -- a shell for querying Neo4j with Cypher"
url = "https://github.com/LemurPwned/cypher-shell"
version = "0.1"
authors = [
{ name = "LemurPwned", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"cypher",
"neo4j",
"querying",
"shell",
"llm"
]
dependencies = [
"pyyaml",
"python-dotenv",
"swarm",
]
[project.urls]
Source = "https://github.com/LemurPwned/cypher-shell"
[project.scripts]
cypher_shell = "cypher_shell.__main__:main_loop"
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]