-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.58 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
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=77", "wheel", "cmake>=3.8"]
build-backend = "setuptools.build_meta"
[project]
name = "pymgclient"
dynamic = ["version"]
description = "Memgraph database adapter for Python language"
requires-python = ">=3.9"
license = "Apache-2.0"
license-files = ["LICENSE"]
readme = { file = "README_PYPI.md", content-type = "text/markdown" }
authors = [{ name = "Colin Barry", email = "colin.barry@memgraph.io" }]
maintainers = [{ name = "Matt James", email = "matthew.james@memgraph.io" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"pyopenssl",
"networkx",
"tzdata",
]
[project.urls]
Source = "https://github.com/memgraph/pymgclient"
Documentation = "https://memgraph.github.io/pymgclient"
[tool.setuptools]
py-modules = ["tools.pymgclient_build_meta"]
[tool.setuptools.packages.find]
include = ["tools*"]
[tool.setuptools.dynamic]
version = { attr = "tools.pymgclient_build_meta.__version__" }