Compare commits

..

2 Commits

Author SHA1 Message Date
ce88ac173a move the cache of read messages 2025-01-11 17:12:18 -06:00
5a365a902b add setup.py 2025-01-11 16:21:13 -06:00
2 changed files with 25 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import sys
from subprocess import Popen, PIPE
read_messages = "/run/test/messages"
read_messages = "/run/pcomon/read_messages"
def get_creds(filename: str) -> dict[str, str]:
with open(filename, "r") as creds_handle:

24
setup.py Normal file
View File

@ -0,0 +1,24 @@
from setuptools import setup, find_packages
setup(
name = 'pcomon',
version = '1.0.0',
author = 'stupidcomputer',
author_email = 'ryan@beepboop.systems',
url = 'https://git.beepboop.systems/stupidcomputer/pcomon',
description = 'monitor planning center online for new messages',
license = 'GPLv3',
entry_points = {
'console_scripts': [
'pcomon = pcomon.entry:entry'
]
},
packages=["pcomon"],
classifiers = (
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Environment :: Console"
),
zip_safe = False
)