forked from pyreadline/pyreadline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.19 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
[tool.poetry]
name = "pyreadline"
version = "2.2.1"
description = "A python implementation of GNU readline functionality, based on the ctypes-based UNC readline package by Gary Bishop"
homepage = "https://ipython.org/pyreadline"
repository = "https://github.com/djstompzone/pyreadline"
authors = [
"Jörgen Stenarson <[email protected]>",
"Gary Bishop <[email protected]>",
"Jack Trainor <[email protected]>",
"Takayuki Shimizukawa <[email protected]>",
"DJ Magar <[email protected]>",
]
maintainers = [
"DJ Magar <[email protected]>",
"Jörgen Stenarson <[email protected]>"
]
license = "BSD-3-Clause"
readme = ["README.rst", "doc/README.txt"]
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: Console",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Terminals",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = ">=2.7,<4.0"
pywin32 = "^308"
[tool.poetry.dev-dependencies]
sphinx = "^5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"