matrix-alertbot/setup.py

52 lines
1.5 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import os
2022-07-09 15:25:16 +02:00
from typing import Tuple
2022-07-09 15:25:16 +02:00
import pkg_resources
from setuptools import find_packages, setup
2022-06-14 23:37:54 +02:00
def read_file(path_segments: Tuple) -> str:
"""Read a file from the package. Takes a list of strings to join to
make the path"""
file_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), *path_segments)
with open(file_path) as f:
return f.read()
2022-07-09 15:25:16 +02:00
version = pkg_resources.require("matrix_alertbot")[0].version
long_description = read_file(("README.md",))
setup(
2022-06-13 20:55:01 +02:00
name="matrix-alertbot",
version=version,
url="https://github.com/anoadragon453/nio-template",
description="A matrix bot to do amazing things!",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"aiohttp>=3.8.1",
2022-07-09 15:25:16 +02:00
"aiohttp-prometheus-exporter>=0.2.4",
"aiotools>=1.5.9",
"diskcache>=5.4.0",
"matrix-nio>=0.19.0",
"Markdown>=3.3.7",
2022-07-10 02:40:04 +02:00
"pytimeparse2>=1.4.0",
"PyYAML>=6.0",
"typing-extensions>=4.3.0",
],
extras_require={
2022-07-09 15:25:16 +02:00
"e2e": ["matrix-nio[e2e]>=0.19.0"],
},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
2022-07-09 15:25:16 +02:00
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
long_description=long_description,
long_description_content_type="text/markdown",
2022-06-13 20:55:01 +02:00
# Allow the user to run the bot with `matrix-alertbot ...`
scripts=["matrix-alertbot"],
)