Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link to original project on GitHub #12

Merged
merged 2 commits into from
Apr 15, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.txt → README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Matthew Brett's fork of BibStuff
################################

This is my own fork of bibstuff. You'll find the original source from the
links below.
This is my own fork of ``bibstuff``. The original project can now be found
at `github.com/dschwilk/bibstuff <https://github.com/dschwilk/bibstuff>`_.

The fork was mainly to add the sphinx ``bibref`` extension.

Expand Down Expand Up @@ -45,12 +45,12 @@ Simply type 'python setup.py install' in the unpacked directory.

Command-line tools (scripts)
============================

These tools are installed in you python scripts directory or they can
be run directly from where they were unpacked. Each of these tools has
a command line interface and provides the -h option to describe usage.

* biblabel.py
* biblabel.py
Creates unique keys for entries bibtex database(s). default keys
look like Schwilk+Isaac:2006 or Smith+Johnson+etal:1999 Command
line options allow you to change the default behavior.
Expand Down Expand Up @@ -97,7 +97,7 @@ a command line interface and provides the -h option to describe usage.
extracts reference keys from the bbl file. This is useful for
creating a bibtex database limited to those references which
occur only in a single latex file.

example: reflist.py my_doc.bbl | bibsearch.py -l my_db.bib > new_db.bib

Modules
Expand Down
7 changes: 3 additions & 4 deletions bibstuff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,19 @@
- utility and classes for managing citations in text files
- utilities for searching and labeling BibTeX files

For more detail, see `README.txt`_.
For more detail, see `README.rst`_.

Bibstuff is free software distributed under the `MIT license`_.
For more detail, see `license.txt`_.

Bibstuff is pure Python_ and in that sense will run on any platform.

.. _`README.txt`: ./README.txt
.. _`README.rst`: ./README.rst
.. _`MIT license`: http://www.opensource.org/licenses/mit-license.php
.. _license.txt: ./license.txt
.. _Python: http://www.python.org
.. _Python: http://www.python.org
"""

__docformat__ = "restructuredtext en"

__version__ = '1.0'

File renamed without changes.