-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/nodemon"]
# [tool.hatch.metadata]
# allow-direct-references = true
[project]
name = "nodemon"
version = "0.0.16"
authors = [
{ name="Ian Harcombe", email="[email protected]" },
]
description = "A simple drag and drop application to help visualise various graph algorithms"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
# "customtkinter@git+https://github.com/DerSchinken/CustomTkinter.git@fix-1419"
"customtkinter>=5.2.2"
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Education",
]
[project.urls]
Homepage = "https://github.com/MrHarcombe/NodeDemonstrator"
Issues = "https://github.com/MrHarcombe/NodeDemonstrator/issues"