Skip to content

Instantly share code, notes, and snippets.

@leetschau
Last active August 2, 2024 02:20
Show Gist options
  • Save leetschau/3f4006e639fb5dcc4bb31a121adf14da to your computer and use it in GitHub Desktop.
Save leetschau/3f4006e639fb5dcc4bb31a121adf14da to your computer and use it in GitHub Desktop.
[project]
name = "my-fancy-project"
description = "My fancy project"
authors = [
{name = "Leo", email = "leetschau@gmail.com"},
]
version = "0.1.0"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"numpy",
"pandas",
"keras",
"tensorflow",
"matplotlib",
]
[project.optional-dependencies]
dev = [
"ipython",
]
[project.urls]
Homepage = "https://example.com"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/leetschau/myproject.git"
Changelog = "https://github.com/leetschau/myproejct/blob/master/CHANGELOG.md"
[project.scripts]
my-app = "app:main"
# Project layout: README.md, pyproject.toml, src/my_fancy_project/app.py, tests/
# See more details at [Writing your pyproject.toml(https://packaging.python.org/en/latest/guides/writing-pyproject-toml/)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment