-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='fail2slack',
version='0.4.0',
description='Send fail2ban jail status updates to Slack.',
long_description=long_description,
long_description_content_type="text/markdown",
license='GPL-2.0',
packages=find_packages(),
author='Chris Carlevato',
author_email='[email protected]',
keywords=['fail2ban', 'slack'],
url='https://github.com/asdfdotdev/fail2slack',
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
"Topic :: System",
"Topic :: Utilities",
],
install_requires=[
'argparse==1.4.0',
'requests==2.27.1',
'validators==0.18.2',
],
)