25 lines
540 B
TOML
25 lines
540 B
TOML
|
[build-system]
|
||
|
requires = ["setuptools"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[project]
|
||
|
name = "nyacme"
|
||
|
version = "0.1.0"
|
||
|
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"
|