-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.5 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='owping-parser',
version='0.2.2',
author='mirgleich',
author_email='[email protected]',
description='A program to parse the output of owping',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/mirgleich/owping-parser',
license='GPLv3',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Topic :: System :: Networking',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
py_modules=['owping'],
keywords='owping network ping',
project_urls={
'Tracker': 'https://github.com/mirgleich/owping-parser/issues',
'Source': 'https://github.com/mirgleich/owping-parser',
},
python_requires='>=3',
)