-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 900 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 900 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-power-user"
version = "0.1.0"
description = "Python Power User — a complete Python language reference, quiz, and TUI in a single file."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Stewart Alexander" }
]
license = { text = "MIT" }
keywords = ["python", "reference", "tutorial", "cli", "tui"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Intended Audience :: Education",
"Topic :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/stewalexander/Python-Power-User"
[project.scripts]
python-power-user = "python_poweruser:main"