-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
60 lines (56 loc) · 1.64 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
55
56
57
58
59
60
[project]
name = "nodezator"
dynamic = ["version"]
dependencies = [
"pygame-ce",
"numpy",
]
authors = [
{ name="Kennedy Richard", email="kennedy@kennedyrichard.com" },
]
description = "A generalist Python node editor"
keywords = [
"gui",
"desktop",
"application",
"pygame",
"pygame-ce",
"graph",
"graphs",
"nodes",
"node",
"editor",
]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: pygame",
"Topic :: Desktop Environment",
"Topic :: Multimedia",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Code Generators",
"Topic :: Artistic Software",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering",
"Intended Audience :: End Users/Desktop",
]
license = { text="Unlicense" }
[project.urls]
Homepage = "https://nodezator.com"
"Source Code" = "https://github.com/IndieSmiths/nodezator"
Forum = "https://github.com/IndieSmiths/nodezator/discussions"
"User Manual" = "https://manual.nodezator.com"
"Bug Tracker" = "https://github.com/IndieSmiths/nodezator/issues"
Donate = "https://indiesmiths.com/donate"
[project.gui-scripts]
nodezator = "nodezator.__main__:parse_args_and_execute_main"
[build-system]
requires = ["setuptools>=59.6"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "nodezator.__version__"}