Skip to content

Commit 4a8fe1d

Browse files
committed
pyproject.toml instead of setup.py
1 parent 433a213 commit 4a8fe1d

File tree

3 files changed

+32
-62
lines changed

3 files changed

+32
-62
lines changed

pyproject.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[project]
2+
name = "cowsay"
3+
version = "6.1"
4+
description = "The famous cowsay for GNU/Linux is now available for python"
5+
license = {text = "GPL-3.0"}
6+
readme = "README.md"
7+
requires-python = ">=3.8"
8+
keywords = ["cowsay"]
9+
authors = [{name = "Vaasudevan Srinivasan", email = "[email protected]"}]
10+
classifiers = [
11+
"Operating System :: OS Independent",
12+
"Programming Language :: Python :: 3.8",
13+
"Programming Language :: Python :: 3.9",
14+
"Programming Language :: Python :: 3.10",
15+
"Programming Language :: Python :: 3.11",
16+
"Programming Language :: Python :: 3.12",
17+
]
18+
19+
[project.optional-dependencies]
20+
test = ["pytest", "coverage"]
21+
22+
[project.scripts]
23+
cowsay = "cowsay.__main__:cli"
24+
25+
[project.urls]
26+
"Changelog" = "https://github.com/VaasuDevanS/cowsay-python/blob/main/CHANGELOG.md"
27+
"Source" = "https://github.com/VaasuDevanS/cowsay-python"
28+
"Tracker" = "https://github.com/VaasuDevanS/cowsay-python/issues"
29+
30+
[build-system]
31+
requires = ["setuptools", "wheel"]
32+
build-backend = "setuptools.build_meta"

requirements.txt

Lines changed: 0 additions & 35 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)