mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
202c2836b2
This changeset contains a set of Pytest fixtures and a mocked bot class to ease the writing of Maubot plugin unit tests. Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
79 lines
2.3 KiB
Python
79 lines
2.3 KiB
Python
import setuptools
|
|
import os
|
|
|
|
with open("requirements.txt") as reqs:
|
|
install_requires = reqs.read().splitlines()
|
|
|
|
with open("optional-requirements.txt") as reqs:
|
|
extras_require = {}
|
|
current = []
|
|
for line in reqs.read().splitlines():
|
|
if line.startswith("#/"):
|
|
extras_require[line[2:]] = current = []
|
|
elif not line or line.startswith("#"):
|
|
continue
|
|
else:
|
|
current.append(line)
|
|
|
|
extras_require["all"] = list({dep for deps in extras_require.values() for dep in deps})
|
|
|
|
path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "maubot", "__meta__.py")
|
|
__version__ = "UNKNOWN"
|
|
with open(path) as f:
|
|
exec(f.read())
|
|
|
|
setuptools.setup(
|
|
name="maubot",
|
|
version=__version__,
|
|
url="https://github.com/maubot/maubot",
|
|
project_urls={
|
|
"Changelog": "https://github.com/maubot/maubot/blob/master/CHANGELOG.md",
|
|
},
|
|
|
|
author="Tulir Asokan",
|
|
author_email="tulir@maunium.net",
|
|
|
|
description="A plugin-based Matrix bot system.",
|
|
long_description=open("README.md").read(),
|
|
long_description_content_type="text/markdown",
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
install_requires=install_requires,
|
|
extras_require=extras_require,
|
|
python_requires="~=3.9",
|
|
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
"Topic :: Communications :: Chat",
|
|
"Framework :: AsyncIO",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
],
|
|
entry_points="""
|
|
[console_scripts]
|
|
mbc=maubot.cli:app
|
|
[pytest11]
|
|
maubot=maubot.testing
|
|
""",
|
|
data_files=[
|
|
(".", ["maubot/example-config.yaml"]),
|
|
],
|
|
package_data={
|
|
"maubot": [
|
|
"example-config.yaml",
|
|
"management/frontend/build/*",
|
|
"management/frontend/build/static/css/*",
|
|
"management/frontend/build/static/js/*",
|
|
"management/frontend/build/static/media/*",
|
|
"py.typed",
|
|
],
|
|
"maubot.cli": ["res/*"],
|
|
"maubot.standalone": ["example-config.yaml"],
|
|
},
|
|
)
|