-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
433a213
commit 4a8fe1d
Showing
3 changed files
with
32 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[project] | ||
name = "cowsay" | ||
version = "6.1" | ||
description = "The famous cowsay for GNU/Linux is now available for python" | ||
license = {text = "GPL-3.0"} | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
keywords = ["cowsay"] | ||
authors = [{name = "Vaasudevan Srinivasan", email = "[email protected]"}] | ||
classifiers = [ | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest", "coverage"] | ||
|
||
[project.scripts] | ||
cowsay = "cowsay.__main__:cli" | ||
|
||
[project.urls] | ||
"Changelog" = "https://github.com/VaasuDevanS/cowsay-python/blob/main/CHANGELOG.md" | ||
"Source" = "https://github.com/VaasuDevanS/cowsay-python" | ||
"Tracker" = "https://github.com/VaasuDevanS/cowsay-python/issues" | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.