-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·32 lines (27 loc) · 989 Bytes
/
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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
import sys
if sys.version_info >= (3, 0):
raise SystemExit('py2-ipaddress: For Python 3.x, please use the official ipaddress module.')
from setuptools import setup
setup(
name='py2-ipaddress',
version='3.4.2',
description="Python 2.6 backport of 3.4's ipaddress module",
maintainer='Søren Løvborg',
maintainer_email='[email protected]',
url='https://github.com/kwi-dk/py2-ipaddress',
license='Python Software Foundation License version 2',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: System :: Networking',
],
long_description=open('README.rst', 'r').read(),
py_modules=[ 'ipaddress' ],
zip_safe=True,
)