generated from anoadragon453/nio-template
-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
66 lines (57 loc) · 1.97 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python3
import os
from setuptools import find_packages, setup
def exec_file(path_segments):
"""Execute a single python file to get the variables defined in it"""
result = {}
code = read_file(path_segments)
exec(code, result)
return result
def read_file(path_segments):
"""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()
version = exec_file(("matrix_reminder_bot", "__init__.py"))["__version__"]
long_description = read_file(("README.md",))
setup(
name="matrix-reminder-bot",
version=version,
url="https://github.com/anoadragon453/matrix-reminder-bot",
description="A matrix bot to remind you about things!",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"matrix-nio[e2e]>=0.24.0",
"Markdown>=3.5.2",
"PyYAML>=6.0.1",
"dateparser>=1.2.0",
"readabledelta>=0.0.2",
"apscheduler>=3.10.4",
"pytz>=2024.1",
"arrow>=1.3.0",
"pretty_cron>=1.2.0",
],
extras_require={
"postgres": ["psycopg2>=2.9.9"],
"dev": [
"isort==5.13.2",
"flake8==7.1.1",
"flake8-comprehensions==3.15.0",
"black==24.8.0",
],
},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
long_description=long_description,
long_description_content_type="text/markdown",
# Allow the user to run the bot with `matrix-reminder-bot ...`
scripts=["matrix-reminder-bot"],
)