maubot/setup.py

51 lines
1.3 KiB
Python
Raw Normal View History

2018-09-23 14:56:21 +00:00
import setuptools
2018-10-14 19:08:11 +00:00
import os
path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "maubot", "__meta__.py")
__version__ = "UNKNOWN"
with open(path) as f:
exec(f.read())
2018-09-23 14:56:21 +00:00
setuptools.setup(
name="maubot",
2018-09-26 07:32:24 +00:00
version=__version__,
2018-09-23 14:56:21 +00:00
url="https://github.com/maubot/maubot",
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=[
2018-09-26 07:32:24 +00:00
"mautrix>=0.4,<0.5",
2018-09-23 14:56:21 +00:00
"aiohttp>=3.0.1,<4",
"SQLAlchemy>=1.2.3,<2",
2018-09-26 07:32:24 +00:00
"alembic>=1.0.0,<2",
"commonmark>=0.8.1,<1",
2018-09-23 14:56:21 +00:00
"ruamel.yaml>=0.15.35,<0.16",
2018-10-17 20:02:04 +00:00
"attrs>=18.1.0,<19",
2018-09-23 14:56:21 +00:00
],
classifiers=[
2018-10-16 22:44:10 +00:00
"Development Status :: 3 - Alpha",
2018-09-23 14:56:21 +00:00
"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.6",
"Programming Language :: Python :: 3.7",
],
entry_points="""
[console_scripts]
maubot=maubot.__main__:main
""",
data_files=[
(".", ["example-config.yaml"]),
],
)