-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 928 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 928 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
31
[project]
name = "pywinpty"
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version", "description"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: Free Threading",
"Programming Language :: Python :: 3",
"Topic :: Terminals",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
"Programming Language :: Rust"
]
keywords = ["PTY", "Windows", "pseudo-terminal", "PyO3"]
authors = [
{email = "andfoy@gmail.com"},
{name = "Edgar Margffoy"}
]
maintainers = [
{name = "Edgar Margffoy", email = "andfoy@gmail.com"}
]
urls.Changelog = "https://github.com/andfoy/pywinpty/blob/main/CHANGELOG.md"
urls.Repository = "https://github.com/andfoy/pywinpty"
[build-system]
requires = ["maturin>=1.1,<2.0"]
build-backend = "maturin"