forked from kyan001/ping3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 1.44 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
setup(
name='ping3',
version='proposal',
description='A pure python3 version of ICMP ping implementation using raw socket.',
long_description='Ping3 is a pure python3 version of ICMP ping implementation using raw socket. Note that ICMP messages can only be sent from processes running as root.',
url='https://github.com/kyan001/ping3',
author='Kai Yan',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Topic :: System :: Networking',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
keywords='python3 ping icmp socket tool',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
py_modules=["ping3", "command_line_ping3", "errors", "enums"],
python_requires='>=3',
install_requires=[],
extras_require={},
package_data={},
data_files=[],
entry_points={
'console_scripts': ['ping3=command_line_ping3:main'],
},
)