~dricottone/filters

ref: bf44d42c110c86e88d84348332b4f6b0f40ce5f2 filters/pyproject.toml -rw-r--r-- 542 bytes
bf44d42cDominic Ricottone Toolchain updates 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["filter", "rng"]

[project]
name = "filters"
description = "Command line data filtering and generation"
readme = "README.md"
version = "1.0.2"
authors = [ { name = "Dominic Ricottone", email = "me@dominic-ricottone.com" } ]
urls = { source = "git.dominic-ricottone.com/~dricottone/filters" }
license = { file = "LICENSE.md" }
requires-python = ">=3.6"

[project.scripts]
filter = "filter.__main__:main"
rng = "rng.__main__:main"