From a8095425740b33100ec98a205c07222f2b0cf49e Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Sat, 5 Oct 2013 21:59:07 +0200 Subject: Package README as well. Rename README.md to README (hopefully github will understand) --- README | 11 +++++++++++ README.md | 11 ----------- cucutags.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 README delete mode 100644 README.md diff --git a/README b/README new file mode 100644 index 0000000..e3cfc7f --- /dev/null +++ b/README @@ -0,0 +1,11 @@ +cucutags provides a simple generator of ctags-like tags file for +the combination of [Gherkin language features](https://github.com/cucumber/cucumber/wiki/Gherkin) and Python [steps](https://github.com/behave/behave). + +Unfortunately, no text editor known to me is able to use so +generated tags file. However, this script can be also used by any +other Python script as a library, and thus for example +[vim](http://www.vim.org) can use it via +[vim-behave](https://gitorious.org/cucutags/vim-behave) plugin. + +All bug reports and enhancement requests, please, send to the +email listed in the script file. diff --git a/README.md b/README.md deleted file mode 100644 index e3cfc7f..0000000 --- a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -cucutags provides a simple generator of ctags-like tags file for -the combination of [Gherkin language features](https://github.com/cucumber/cucumber/wiki/Gherkin) and Python [steps](https://github.com/behave/behave). - -Unfortunately, no text editor known to me is able to use so -generated tags file. However, this script can be also used by any -other Python script as a library, and thus for example -[vim](http://www.vim.org) can use it via -[vim-behave](https://gitorious.org/cucutags/vim-behave) plugin. - -All bug reports and enhancement requests, please, send to the -email listed in the script file. diff --git a/cucutags.py b/cucutags.py index 8a1c09e..d95077b 100755 --- a/cucutags.py +++ b/cucutags.py @@ -31,7 +31,7 @@ logging.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s', import parse __docformat__ = 'reStructuredText' -__version__ = "0.4.0" +__version__ = "0.5.0" __author__ = u"Matěj Cepl " diff --git a/setup.py b/setup.py index 0f64ee7..9ba697e 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setup( author=u'Matěj Cepl', author_email='mcepl@redhat.com', url='https://gitorious.org/cucutags/cucutags/', - long_description=read("README.md"), + long_description=read("README"), cmdclass={'test': RunTests}, keywords=['BDD', 'behave', 'ctags', 'tags'], classifiers=[ -- cgit