Skip to content

Commit

Permalink
poetry i
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehvix committed May 3, 2024
1 parent a608091 commit 1f9581d
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@
name = "golink"
version = "0.5.1"

[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
# [build-system]
# requires = ["setuptools>=42", "wheel"]
# build-backend = "setuptools.build_meta"

[tool.poetry]
name = "golink"
version = "0.5.1"
license = "GPLv3"
description = "A simple URL shortener"
authors = ["Max Vogel", "Logan Engstrom"]
readme = "README.md"
repository = "https://github.com/Mehvix/golink"

[tool.poetry.dependencies]
python = "^3.9"
tqdm = "^4.66.4"
tabulate = "^0.9.0"
requests = "^2.31.0"
pandas = "^2.2.2"

[tool.setuptools]
include-package-data = true
package-data = { "" = ["script.js", "style.css"] }
zip-safe = false

0 comments on commit 1f9581d

Please sign in to comment.