Add Cloudron packaging for Maubot
This commit is contained in:
79
maubot-src/setup.py
Normal file
79
maubot-src/setup.py
Normal file
@@ -0,0 +1,79 @@
|
||||
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.10",
|
||||
|
||||
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.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
],
|
||||
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"],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user