forked from riederm/mandelbrot.python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 700 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[project]
name = "my-mandelbrot-py"
version = "1.0.0"
description = "A small application that draws the Mandelbrot set."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [{name = "Your Name", email = "you@example.com"}]
dependencies = ["Pillow"]
[project.scripts]
mandelbrot = "my_mandelbrot_py.cli:main"
[project.urls]
"Homepage" = "https://example.com"
[project.optional-dependencies]
dev = ["pytest"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver2"
version_provider = "pep621"
update_changelog_on_bump = true