-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (40 loc) · 1.13 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "0.10.3"
name = "rlpython"
description = "GNU Readline based Python REPL without any external dependencies"
authors = [
{ name="Florian Scherf", email="mail@florianscherf.de" },
]
license = { file="LICENSE.txt" }
readme = "README.rst"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Debuggers",
"Topic :: System :: Monitoring",
"Topic :: System :: Shells",
"Topic :: Terminals",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
]
[project.optional-dependencies]
packaging = [
"build",
"twine",
]
[project.urls]
"Homepage" = "https://github.com/fscherf/rlpython"
"Repository" = "https://github.com/fscherf/rlpython"
"Bug Tracker" = "https://github.com/fscherf/rlpython/issues"
[tool.setuptools]
script-files = [
"bin/rlpython",
]
[tool.setuptools.packages.find]
include = ["rlpython*"]