forked from stellarbit/aioping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 771 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
# coding: utf8
from distutils.core import setup
setup(
name="aioping",
packages=["aioping"],
version="0.1.0",
description="Asyncio ping implementation",
author="Anton Belousov",
author_email="[email protected]",
url="https://github.com/stellarbit/aioping",
download_url="https://github.com/stellarbit/aioping/tarball/0.1.0",
keywords=["network", "icmp", "ping", "asyncio"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)