24 lines
544 B
TOML
24 lines
544 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "nyacme"
|
|
version = "0.1.6"
|
|
authors = [
|
|
{name = "Patrycja Rosa", email = "python@ptrcnull.me"},
|
|
]
|
|
description = "a uacme wrapper that maybe probably doesn't suck too much"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
license = {text = "BSD-2-Clause"}
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
dependencies = [
|
|
"dnspython >= 2.4.2"
|
|
]
|
|
|
|
[project.scripts]
|
|
nyacme = "nyacme.__main__:main"
|
|
nyacme-hook = "nyacme.hook:main"
|