~dricottone/hist

ref: 5e992c25e37a87afa0bbb2c2e36a368a9b8bee9a hist/pyproject.toml -rw-r--r-- 432 bytes
5e992c25Dominic Ricottone Rebuild project 2 years ago
                                                                                
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 = "hist"
description = "Draw a histogram"
readme = "README.md"
version = "1.0.0"
authors = [ { name = "Dominic Ricottone", email = "me@dominic-ricottone.com" } ]
urls = { source = "git.dominic-ricottone.com/~dricottone/hist" }
license = { file = "LICENSE.md" }
requires-python = ">=3.6"

[project.scripts]
hist = "hist.__main__:main"