-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 848 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
from setuptools import setup, find_packages
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="webex_handler",
version="2.0.0",
description="A python logging handler that logs to Webex incoming webhooks",
url="https://github.com/xorrkaz/webex-log-handler",
author="Joe Clarke",
author_email="[email protected]",
long_description_content_type="text/markdown",
long_description=readme(),
license="MIT",
setup_requires=["wheel"],
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=["requests"],
zip_safe=False,
keywords=["Elemental"],
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
)