m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
3.3 KiB

6 months ago
  1. # -*- coding: utf-8 -*-
  2. from __future__ import print_function, unicode_literals, absolute_import
  3. """Release data for the pyreadline project.
  4. $Id$"""
  5. #*****************************************************************************
  6. # Copyright (C) 2006 Jorgen Stenarson. <jorgen.stenarson@kroywen.se>
  7. #
  8. #
  9. # Distributed under the terms of the BSD License. The full license is in
  10. # the file COPYING, distributed as part of this software.
  11. #*****************************************************************************
  12. # Name of the package for release purposes. This is the name which labels
  13. # the tarballs and RPMs made by distutils, so it's best to lowercase it.
  14. name = 'pyreadline'
  15. # For versions with substrings (like 0.6.16.svn), use an extra . to separate
  16. # the new substring. We have to avoid using either dashes or underscores,
  17. # because bdist_rpm does not accept dashes (an RPM) convention, and
  18. # bdist_deb does not accept underscores (a Debian convention).
  19. branch = ''
  20. version = '2.1'
  21. description = "A python implmementation of GNU readline."
  22. long_description = \
  23. """
  24. The pyreadline package is a python implementation of GNU readline functionality
  25. it is based on the ctypes based UNC readline package by Gary Bishop.
  26. It is not complete. It has been tested for use with windows 2000 and windows xp.
  27. * pyreadline 2.1 <2015-09-16>
  28. This is a bugfix release to make pyreadline work with python 3.5.
  29. Contributors to this release:
  30. - Jörgen Stenarson, maintainer
  31. - kivhift, improved error message for running on non windows platforms
  32. - zooba, made helpful suggestions to make it work for python 3.5
  33. Version 2.1 of pyreadline has been verfied for Python 2.7, and 3.4, 3.5.
  34. Features:
  35. * keyboard text selection and copy/paste
  36. * Shift-arrowkeys for text selection
  37. * Control-c can be used for copy activate with allow_ctrl_c(True) in config file
  38. * Double tapping ctrl-c will raise a KeyboardInterrupt, use ctrl_c_tap_time_interval(x)
  39. where x is your preferred tap time window, default 0.3 s.
  40. * paste pastes first line of content on clipboard.
  41. * ipython_paste, pastes tab-separated data as list of lists or numpy array if all data is numeric
  42. * paste_mulitline_code pastes multi line code, removing any empty lines.
  43. The latest development version is always available at the IPython github
  44. repository_.
  45. .. _repository: https://github.com/pyreadline/pyreadline.git
  46. """
  47. license = 'BSD'
  48. authors = {'Jorgen' : ('Jorgen Stenarson','jorgen.stenarson@kroywen.se'),
  49. 'Gary': ('Gary Bishop', ''),
  50. 'Jack': ('Jack Trainor', ''),
  51. }
  52. url = 'http://ipython.org/pyreadline.html'
  53. download_url = 'https://pypi.python.org/pypi/pyreadline/'
  54. platforms = ['Windows XP/2000/NT',
  55. 'Windows 95/98/ME']
  56. keywords = ['readline',
  57. 'pyreadline']
  58. classifiers = ['Development Status :: 5 - Production/Stable',
  59. 'Environment :: Console',
  60. 'Operating System :: Microsoft :: Windows',
  61. 'License :: OSI Approved :: BSD License',
  62. 'Programming Language :: Python :: 2.7',
  63. 'Programming Language :: Python :: 3.2',
  64. 'Programming Language :: Python :: 3.3',
  65. 'Programming Language :: Python :: 3.4',
  66. 'Programming Language :: Python :: 3.5',
  67. ]