forked from fabytm/Outage-Detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 774 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
from setuptools import setup
with open('requirements.txt') as req_files:
requirements = req_files.read().splitlines()
with open("README.md", 'r') as readme:
long_description = readme.read()
setup(
name='Outage Detector',
version='1.1.2',
description='A module helping you find out when internet and power outages happen.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
packages=['outagedetector'],
install_requires=requirements,
entry_points={
'console_scripts': [
'outage_detector = outagedetector.__main__:main'
]
},
url='https://github.com/fabytm/Outage-Detector',
author='Butean Fabian',
author_email='[email protected]'
)