1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "vote"
description = "Simulate a speaker election"
readme = "README.md"
version = "1.0.0"
authors = [ { name = "Dominic Ricottone", email = "me@dominic-ricottone.com" } ]
urls = { source = "git.dominic-ricottone.com/~dricottone/fiddler-231027" }
license = { file = "LICENSE.md" }
requires-python = ">=3.11"
[project.scripts]
vote = "vote.__main__:main"