-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 895 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
from setuptools import setup
from setuptools import find_packages
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
]
setup(
name="internet-connection",
version="0.0.1",
description="Library to monitor internet connection state, when last online/offline, read external IP address, etc",
keywords=["internet connection", "connection state", "online", "offline", "uptime", "downtime", "internal ip", "external ip", "public ip"],
long_description=open("README.md").read(),
author="Dennis Lee",
author_email="[email protected]",
url="https://github.com/dennislwy/internet-connection-python",
classifiers=classifiers,
packages=find_packages(exclude=['tests']),
license="MIT"
)