1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4try:
5    from setuptools import setup
6except ImportError:
7    from distutils.core import setup
8
9settings = {
10    'name': 'ipaddress',
11    'version': '1.0.23',
12    'description': 'IPv4/IPv6 manipulation library',
13    'long_description': 'Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2',
14    'author': 'Philipp Hagemeister',
15    'author_email': '[email protected]',
16    'url': 'https://github.com/phihag/ipaddress',
17    'license': 'Python Software Foundation License',
18    'classifiers': [
19        'Development Status :: 5 - Production/Stable',
20        'Intended Audience :: Developers',
21        'Natural Language :: English',
22        'License :: OSI Approved :: Python Software Foundation License',
23        'Programming Language :: Python',
24        'Programming Language :: Python :: 2.6',
25        'Programming Language :: Python :: 2.7',
26        'Programming Language :: Python :: 3.2',
27        'Programming Language :: Python :: 3.3',
28        'Programming Language :: Python :: 3.4',
29        'Programming Language :: Python :: 3.5',
30        'Programming Language :: Python :: 3.6',
31    ],
32    'py_modules': ['ipaddress'],
33}
34
35setup(**settings)
36