-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (43 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "myappmaker"
dynamic = ["version"]
dependencies = [
"pyside6",
"numpy",
"scipy",
]
authors = [
{ name="Kennedy Richard", email="[email protected]" },
]
description = "Visual desktop app builder for non-techical and technical users"
keywords = ["desktop", "app making", "app building", "gui", "pyside", "qt"]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Topic :: Software Development",
"Topic :: Software Development :: User Interfaces",
"Topic :: Desktop Environment",
"Topic :: Multimedia",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
]
license = { text="Unlicense" }
[project.urls]
Homepage = "https://indiepython.com/myappmaker"
"Source Code" = "https://github.com/IndieSmiths/myappmaker"
Forum = "https://github.com/IndieSmiths/myappmaker/discussions"
"Bug Tracker" = "https://github.com/IndieSmiths/myappmaker/issues"
Funding = "https://indiepython.com/donate"
[project.gui-scripts]
myappmaker = "myappmaker.__main__:main"
[build-system]
requires = ["setuptools>=59.6"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "myappmaker.__version__"}