-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.28 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
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="fikkie",
version="0.5.4",
description=(
"The simplest tool for lightweight monitoring over SSH, compatible with all "
"your favorite messengers."
),
license="MIT",
long_description=long_description,
author="Joris Hartog (@nootr)",
long_description_content_type="text/markdown",
url="https://github.com/nootr/fikkie/",
packages=["fikkie", "fikkie.notifiers"],
scripts=["scripts/fikkie"],
install_requires=[
"celery==5.3.6",
"PyYAML==5.3.1", # Issue: https://github.com/yaml/pyyaml/issues/724
"tinydb==4.8.0",
"typing_extensions==4.0.1",
],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Celery",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Monitoring",
],
)