Skip to content
Snippets Groups Projects
Commit b30af739 authored by Matthew K Defenderfer's avatar Matthew K Defenderfer
Browse files

change pyproject to build using poetry instead of setuptools. added command...

change pyproject to build using poetry instead of setuptools. added command line entrypoint as well so we can easily set an entrypoint in the Docker container
parent e0e45370
No related branches found
No related tags found
No related merge requests found
[build-system] [tool.poetry]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pak" name = "pak"
version = "0.1.0" version = "0.1.0"
description = "A simple Python package." description = "A sample Python package"
authors = [{ name = "Your Name", email = "your.email@example.com" }] authors = ["Matthew Defenderfer <mdefende@uab.edu>"]
\ No newline at end of file license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
# Add your other dependencies here
[tool.poetry.dev-dependencies]
pytest = "^7.0"
[tool.poetry.scripts]
hello = "pak:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment