Last active
December 18, 2022 06:38
-
-
Save ricardolsmendes/9eb00daa62f89a8a2aba8e0a0ddffaf6 to your computer and use it in GitHub Desktop.
pyproject.toml cheat sheet - initial version
This file contains hidden or 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
[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 = "[email protected]"}, | |
] | |
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