Skip to content

Commit

Permalink
pyproject.toml instead of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
VaasuDevanS committed Oct 11, 2023
1 parent 433a213 commit 4a8fe1d
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 62 deletions.
32 changes: 32 additions & 0 deletions pyproject.toml
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"
35 changes: 0 additions & 35 deletions requirements.txt

This file was deleted.

27 changes: 0 additions & 27 deletions setup.py

This file was deleted.

0 comments on commit 4a8fe1d

Please sign in to comment.