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
|
#!/usr/bin/env python
# $Id: setup.py 671 2004-08-22 21:02:29Z md $
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
import IPy
LONG_DESCRIPTION=open('README').read()
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Environment :: Plugins',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: System :: Networking',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python']
URL = "http://software.inl.fr/trac/trac.cgi/wiki/IPy"
setup(name="IPy",
version=IPy.__version__,
description="Class and tools for handling of IPv4 and IPv6 addresses and networks",
long_description=LONG_DESCRIPTION,
author="Maximillian Dornseif",
maintainer="Victor Stinner",
maintainer_email="victor.stinner AT inl.fr",
license="BSD License",
keywords="ipv4 ipv6 netmask",
url=URL,
download_url=URL,
classifiers= CLASSIFIERS,
py_modules=["IPy"])
|