helloasso-to-discourse/pyproject.toml

30 lines
608 B
TOML

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "helloasso-to-discourse"
description = "Assign Discourse Badges to participants of HelloAsso events"
version = "0.3"
readme = "README.md"
license = {text = "MIT License"}
authors = [
{name = "Julien Palard", email = "julien@palard.fr"},
]
dependencies = [
"helloasso-apiv5",
"tabulate",
"requests",
]
[project.scripts]
helloasso-to-discourse = "helloasso_to_discourse:main"
[tool.setuptools]
py-modules = [
"helloasso_to_discourse",
]
include-package-data = false
[tool.black]