forked from stellarbit/aioping
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (22 loc) · 817 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
# coding: utf8
from setuptools import setup
setup(
name="aioping",
packages=["aioping"],
version="0.2.0",
install_requires=["async_timeout", "aiodns"],
description="Asyncio ping implementation",
author="Anton Belousov",
author_email="anton@stellarbit.com",
url="https://github.com/stellarbit/aioping",
download_url="https://github.com/stellarbit/aioping/tarball/0.2.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",
]
)