setup.py 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #!/usr/bin/env python
  2. #
  3. # Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
  4. #
  5. # Permission to use, copy, modify, and distribute this software and its
  6. # documentation for any purpose with or without fee is hereby granted,
  7. # provided that the above copyright notice and this permission notice
  8. # appear in all copies.
  9. #
  10. # THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES
  11. # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12. # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR
  13. # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14. # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15. # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  16. # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17. import sys
  18. from setuptools import setup
  19. version = '1.15.0'
  20. kwargs = {
  21. 'name' : 'dnspython',
  22. 'version' : version,
  23. 'description' : 'DNS toolkit',
  24. 'long_description' : \
  25. """dnspython is a DNS toolkit for Python. It supports almost all
  26. record types. It can be used for queries, zone transfers, and dynamic
  27. updates. It supports TSIG authenticated messages and EDNS0.
  28. dnspython provides both high and low level access to DNS. The high
  29. level classes perform queries for data of a given name, type, and
  30. class, and return an answer set. The low level classes allow
  31. direct manipulation of DNS zones, messages, names, and records.""",
  32. 'author' : 'Bob Halley',
  33. 'author_email' : 'halley@dnspython.org',
  34. 'license' : 'BSD-like',
  35. 'url' : 'http://www.dnspython.org',
  36. 'packages' : ['dns', 'dns.rdtypes', 'dns.rdtypes.IN', 'dns.rdtypes.ANY'],
  37. 'download_url' : \
  38. 'http://www.dnspython.org/kits/%s/dnspython-%s.tar.gz' % (version, version),
  39. 'classifiers' : [
  40. "Development Status :: 5 - Production/Stable",
  41. "Intended Audience :: Developers",
  42. "Intended Audience :: System Administrators",
  43. "License :: Freeware",
  44. "Operating System :: Microsoft :: Windows :: Windows 95/98/2000",
  45. "Operating System :: POSIX",
  46. "Programming Language :: Python",
  47. "Topic :: Internet :: Name Service (DNS)",
  48. "Topic :: Software Development :: Libraries :: Python Modules",
  49. "Programming Language :: Python :: 2",
  50. "Programming Language :: Python :: 2.6",
  51. "Programming Language :: Python :: 2.7",
  52. "Programming Language :: Python :: 3",
  53. "Programming Language :: Python :: 3.3",
  54. "Programming Language :: Python :: 3.4",
  55. "Programming Language :: Python :: 3.5",
  56. ],
  57. 'test_suite': 'tests',
  58. 'provides': ['dns'],
  59. }
  60. setup(**kwargs)