-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
49 lines (41 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
import os
import sys
from setuptools import setup
__version__ = "4.5.1"
assert sys.version_info > (3, 6)
def read(filename):
with open(os.path.join(os.path.dirname(__file__), filename), encoding="utf-8") as f:
return f.read()
setup(
name="2ping",
description="2ping a bi-directional ping utility",
long_description=read("README.md"),
long_description_content_type="text/markdown",
version=__version__,
license="MPL-2.0",
platforms=["Unix"],
author="Ryan Finnie",
author_email="ryan@finnie.org",
url="https://www.finnie.org/software/2ping/",
download_url="https://www.finnie.org/software/2ping/",
packages=["twoping"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
entry_points={
"console_scripts": ["2ping = twoping.cli:main", "2ping6 = twoping.cli:main"]
},
)