-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 998 Bytes
/
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
import setuptools
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="intrusion-monitor",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Afonso Costa",
description="An SSH log watchdog, which exports failed login attempts to an InfluxDB timeseries database.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/afonsoc12/intrusion-monitor",
packages=setuptools.find_packages(),
install_requires=[
"requests-cache>=0.9.1,<1",
"pygeohash>=1.2.0,<2",
"influxdb>=5.3.1,<6",
],
entry_points={"console_scripts": ["intrusion-monitor = intrusion_monitor:main"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)