-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.1 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.1 KB
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
#!/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.5.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='hello@asdf.dev',
keywords=['fail2ban', 'slack'],
url='https://github.com/asdfdotdev/fail2slack',
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: System",
"Topic :: Utilities",
],
install_requires=[
'argparse==1.4.0',
'requests==2.32.3',
'validators==0.34.0',
],
)