forked from andreasvc/cplay
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
34 lines (30 loc) · 825 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cplay-ng"
version = "5.4.0"
description = "A simple curses audio player"
readme = "README.md"
license = {text = "GPLv2+"}
keywords = ["music-player", "curses"]
authors = [
{name = "Ulf Betlehem", email = "flu@iki.fi"}
]
maintainers = [
{name = "Tobias Bengfort", email = "tobias.bengfort@posteo.de"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console :: Curses",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://github.com/xi/cplay-ng"
[project.scripts]
cplay-ng = "cplay:main"
[tool.setuptools]
py-modules = ["cplay"]