forked from samuel/python-ping
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 739 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 739 Bytes
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
# -*- Mode: Python -*-
"""ping
"""
from setuptools import setup
from codecs import open
from os import path
import os
setup(
name='ping',
version=0.1,
description='Pure python3 ping implementation',
long_description="",
url='https://github.com/21dotco/two1',
author='Corentin Debains',
author_email='corentone@hotmail.com',
license='GNUGPLv2',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet',
'Topic :: Utilities',
'License :: OSI Approved :: GNU GPL v2',
'Programming Language :: Python :: 3.4',
],
keywords='ping icmp',
)