-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.13 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
41
"""Setup file for easy installation."""
from setuptools import setup
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="loganom",
version="1.1.1",
author="Danilo G. Baio",
author_email="[email protected]",
description="Log analyzer to discover anomalies",
license='BSD2CLAUSE',
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/dbaio/loganom",
project_urls={
"Documentation": "https://loganom.readthedocs.io/en/latest/",
},
platforms=["any"],
packages=['loganom'],
package_dir={"loganom": "loganom"},
include_package_data=True,
entry_points={"console_scripts": ["loganom = loganom.main:main"]},
install_requires=[
'dnspython',
'requests',
'marrow.mailer',
'texttable',
'pymsteams'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Communications :: Email"
],
python_requires='>=3.9',
zip_safe=False,
)