forked from mgeitz/eqalert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 871 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
30
31
32
from distutils.core import setup
# read the contents of README.md
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="eqalert",
version="3.6.1",
author="M Geitz",
author_email="[email protected]",
install_requires=[
"playsound>=1.3.0",
"gtts>=2.3.2",
],
python_requires=">=3.9.2",
packages=["eqa", "eqa.lib", "eqa.sound"],
include_package_data=True,
package_data={"eqa.sound": ["*.wav"]},
license="GPL2",
entry_points={
"console_scripts": [
"eqalert = eqa.eqalert:main",
],
},
description="Configurable and Context Driven Project 1999 Log Parser",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mgeitz/eqalert",
)