2023-05-15 19:00:03 +02:00
|
|
|
[project]
|
|
|
|
name = "mmcli"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = [
|
|
|
|
{ name="Midgard", email="midgard@zeus.ugent.be" },
|
|
|
|
]
|
|
|
|
description = "Mattermost command-line interface"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
# Choose from the list at https://pypi.org/classifiers/
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Environment :: Console",
|
|
|
|
|
|
|
|
#"Development Status :: 1 - Planning",
|
|
|
|
#"Development Status :: 2 - Pre-Alpha",
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
#"Development Status :: 4 - Beta",
|
|
|
|
#"Development Status :: 5 - Production/Stable",
|
|
|
|
#"Development Status :: 6 - Mature",
|
|
|
|
#"Development Status :: 7 - Inactive",
|
|
|
|
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
]
|
|
|
|
|
|
|
|
requires-python = ">=3.7"
|
|
|
|
dependencies = [
|
|
|
|
"python-dateutil >= 2.8.2, < 3.0.0",
|
|
|
|
"mattermost >= 5.33.0",
|
2023-05-15 19:00:15 +02:00
|
|
|
"websocket_client",
|
2023-05-15 19:00:03 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
#"Homepage" = ""
|
|
|
|
"Source" = "https://git.zeus.gent/midgard/mmcli"
|
|
|
|
"Change log" = "https://git.zeus.gent/midgard/mmcli/-/blob/master/CHANGELOG.md"
|
|
|
|
"Bug tracker" = "https://git.zeus.gent/midgard/mmcli/-/issues"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
# executable-name = "package.subpackage.module:function"
|
|
|
|
mmcli = "mmcli.mmcli:main"
|
|
|
|
|
|
|
|
[tool.setuptools.packages]
|
|
|
|
find = {}
|