-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (31 loc) · 933 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "typedb-jupyter"
version = "0.3"
description = "Jupyter connector for TypeDB"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "James Whiteside", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: IPython",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Database",
]
dependencies = [
"typedb-client~=2.17",
"ipython"
]
[project.urls]
"Repository" = "https://github.com/typedb-osi/typedb-jupyter"
"Release notes" = "https://github.com/typedb-osi/typedb-jupyter/blob/master/RELEASE_NOTES.md"
"TypeDB" = "https://github.com/vaticle/typedb"
"Vaticle" = "https://vaticle.com/"