Last active
August 2, 2024 02:20
-
-
Save leetschau/3f4006e639fb5dcc4bb31a121adf14da to your computer and use it in GitHub Desktop.
This file contains 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
[project] | |
name = "my-fancy-project" | |
description = "My fancy project" | |
authors = [ | |
{name = "Leo", email = "[email protected]"}, | |
] | |
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