forked from oe4dns/tootgroup.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 941 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name="tootgroup.py"
dynamic = ["version"]
dependencies = [
"Mastodon.py",
"platformdirs",
]
requires-python = ">=3.8"
authors = [ {name = "Andreas Schreiner", email = "andreas.schreiner@sonnenmulde.at"} ]
description="Group account features on Mastodon, Pleroma and Friendica"
readme="README.md"
keywords=["mastodon", "pleroma", "friendica", "toot", "group", "account", "fediverse"]
classifiers=[
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/oe4dns/tootgroup.py"
[tool.setuptools]
script-files = ["tootgroup.py"]
[tool.setuptools.dynamic]
version = {attr = "tootgroup.TOOTGROUP_VERSION"}