Skip to content

Instantly share code, notes, and snippets.

@ricardolsmendes
Last active December 18, 2022 06:38
Show Gist options
  • Save ricardolsmendes/9eb00daa62f89a8a2aba8e0a0ddffaf6 to your computer and use it in GitHub Desktop.
Save ricardolsmendes/9eb00daa62f89a8a2aba8e0a0ddffaf6 to your computer and use it in GitHub Desktop.
pyproject.toml cheat sheet - initial version
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[project]
name = "pyproject-toml-cheat-sheet"
version = "1.0.0"
authors = [
{name = "Your Name", email = "you@yourdomain.com"},
]
description = "Python package developer's cheat sheet (using pyproject.toml)."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"stringcase ~=1.2.0",
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment