__pkginfo__.py 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
  2. # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
  3. #
  4. # This file is part of logilab-common.
  5. #
  6. # logilab-common is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Lesser General Public License as published by the Free
  8. # Software Foundation, either version 2.1 of the License, or (at your option) any
  9. # later version.
  10. #
  11. # logilab-common is distributed in the hope that it will be useful, but WITHOUT
  12. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  13. # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  14. # details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public License along
  17. # with logilab-common. If not, see <http://www.gnu.org/licenses/>.
  18. """logilab.common packaging information"""
  19. __docformat__ = "restructuredtext en"
  20. import sys
  21. distname = 'logilab-common'
  22. modname = 'common'
  23. subpackage_of = 'logilab'
  24. subpackage_master = True
  25. numversion = (0, 58, 0)
  26. version = '.'.join([str(num) for num in numversion])
  27. license = 'LGPL' # 2.1 or later
  28. description = "collection of low-level Python packages and modules used by Logilab projects"
  29. web = "http://www.logilab.org/project/%s" % distname
  30. ftp = "ftp://ftp.logilab.org/pub/%s" % modname
  31. mailinglist = "mailto://python-projects@lists.logilab.org"
  32. author = "Logilab"
  33. author_email = "contact@logilab.fr"
  34. from os.path import join
  35. scripts = [join('bin', 'pytest')]
  36. include_dirs = [join('test', 'data')]
  37. if sys.version_info < (2, 7):
  38. install_requires = ['unittest2 >= 0.5.1']
  39. classifiers = ["Topic :: Utilities",
  40. "Programming Language :: Python",
  41. "Programming Language :: Python :: 2",
  42. "Programming Language :: Python :: 3",
  43. ]