-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.23 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
# coding: utf-8
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
EXCLUDE_FROM_PACKAGES = ['sentinel.examples']
setup(name='mqtt-sentinel',
version='0.8.2',
description='Integration between MQTT and custom notification services.',
url='https://github.com/caiovictormc/mqtt-sentinel',
author='caiovictormc',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
install_requires=[
'paho-mqtt==1.4.0',
'PyInquirer==1.0.3',
'prompt_toolkit==1.0.14',
'click==7.0',
'colorama==0.4.1',
'requests==2.21.0'
],
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Networking :: Monitoring'
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points={
'console_scripts': ['msentinel=sentinel.cli:cli']
},
zip_safe=False)