-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 908 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 908 Bytes
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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "memory_graph"
version = "0.3.70"
description = "Teaching tool and debugging aid in context of references, mutable data types, and shallow and deep copy."
authors = [
{name = "Bas Terwijn", email = "bterwijn@gmail.com"}
]
license = "BSD-2-Clause"
license-files = ["LICENSE.txt"]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Software Development :: Debuggers",
]
dependencies = [
"graphviz",
]
[project.urls]
Homepage = "https://github.com/bterwijn/memory_graph"
Repository = "https://github.com/bterwijn/memory_graph.git"
[tool.setuptools]
packages = ["memory_graph"]