-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
60 lines (51 loc) · 1.93 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import re
from setuptools import find_packages
from setuptools import setup
def get_version():
filename = "ExceptNotifier/__init__.py"
with open(filename) as f:
match = re.search(r"""^__version__ = ['"]([^'"]*)['"]""", f.read(), re.M)
if not match:
raise RuntimeError("{} doesn't contain __version__".format(filename))
version = match.groups()[0]
return version
def get_long_description():
with open("README.md", encoding="UTF-8") as f:
long_description = f.read()
return long_description
version = get_version()
setup(
name="exceptnotifier",
version="0.2.11",
author="daniel park",
author_email="[email protected]",
description="With Python's try-except to receive notifications about Errors or Successes in your code through messenger app or email.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/dsdanielpark/ExceptNotifier",
packages=find_packages(exclude=[]),
python_requires=">=3.6",
install_requires=[
"twilio",
"plyer",
"openai",
"discord",
"sphinx-rtd-theme",
"Sphinx",
"bardapi",
],
keywords="Exception, Python, Python Exception Alarm, Error notifications, Customizable notifications, Traceback management, Single line alarm",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
entry_points={"console_scripts": ["ExceptNotifier=ExceptNotifier.cli:main"]},
)