forked from magmax/python-readchar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (41 loc) · 1.58 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "readchar"
version = "4.2.1-dev0"
requires-python = ">= 3.8"
dependencies = []
authors = [
{ name = "Miguel Ángel García", email="[email protected]" },
{ name = "Jan Wille", email = "[email protected]" },
]
maintainers = [{ name = "Jan Wille", email = "[email protected]" }]
keywords = ["characters", "keystrokes", "stdin", "command line"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: User Interfaces",
]
description = "Library to easily read single chars and key strokes"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENCE" }
[project.urls]
Homepage = "https://pypi.org/project/readchar"
#Documentation = "https://readthedocs.org"
Repository = "https://github.com/magmax/python-readchar"
Issues = "https://github.com/magmax/python-readchar/issues"
Changelog = "https://github.com/magmax/python-readchar/releases"