setup.py 1.2 KB

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