-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
54 lines (50 loc) · 1.73 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
50
51
52
53
54
from setuptools import setup, find_packages
with open('README.rst') as readme:
next(readme) # skip badges
long_description = ''.join(readme).strip()
setup(
name='openvpn-status',
version='0.2.2',
url='https://github.com/tonyseek/openvpn-status',
author='Jiangge Zhang',
author_email='[email protected]',
description='Parse OpenVPN status logs in Python',
long_description=long_description,
packages=find_packages(),
zip_safe=False,
license='MIT',
keywords=['openvpn', 'status', 'log'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: Log Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
'Topic :: Text Processing',
'Topic :: Utilities',
],
install_requires=[
'six>=1.9.0',
'humanize',
'netaddr',
],
extras_require={
':python_version == "2.7"': [
'ipaddress',
],
},
platforms=['Any'],
)