Skip to content
This repository was archived by the owner on May 4, 2020. It is now read-only.

Commit 72a01f4

Browse files
committed
Refreshed README.rst.
Drops need for separate description.rst.
1 parent e05d82d commit 72a01f4

File tree

4 files changed

+64
-34
lines changed

4 files changed

+64
-34
lines changed

README.rst

Lines changed: 62 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,74 @@
1-
=======
1+
|Travis|_ |Coveralls|_ |Docs|_ |PyPI|_
2+
3+
.. |Travis| image:: https://api.travis-ci.org/python-excel/xlutils.svg?branch=master
4+
.. _Travis: https://travis-ci.org/python-excel/xlutils
5+
6+
.. |Coveralls| image:: https://coveralls.io/repos/python-excel/xlutils/badge.svg?branch=master
7+
.. _Coveralls: https://coveralls.io/r/python-excel/xlutils?branch=master
8+
9+
.. |Docs| image:: https://readthedocs.org/projects/xlutils/badge/?version=latest
10+
.. _Docs: http://xlutils.readthedocs.org/en/latest/
11+
12+
.. |PyPI| image:: https://badge.fury.io/py/xlutils.svg
13+
.. _PyPI: https://badge.fury.io/py/xlutilsxlutils
14+
215
xlutils
316
=======
417

18+
This package provides a collection of utilities for working with Excel
19+
files. Since these utilities may require either or both of the xlrd
20+
and xlwt packages, they are collected together here, separate from either
21+
package.
22+
23+
Currently available are:
24+
25+
**xlutils.copy**
26+
Tools for copying xlrd.Book objects to xlwt.Workbook objects.
27+
28+
**xlutils.display**
29+
Utility functions for displaying information about xlrd-related
30+
objects in a user-friendly and safe fashion.
31+
32+
**xlutils.filter**
33+
A mini framework for splitting and filtering Excel files into new
34+
Excel files.
35+
36+
**xlutils.margins**
37+
Tools for finding how much of an Excel file contains useful data.
38+
39+
**xlutils.save**
40+
Tools for serializing xlrd.Book objects back to Excel files.
41+
42+
**xlutils.styles**
43+
Tools for working with formatting information expressed in styles.
44+
45+
Installation
46+
============
47+
48+
Do the following in your virtualenv::
49+
50+
pip install xlutils
51+
552
For full documentation please see:
653
http://www.simplistix.co.uk/software/python/xlutils
754

855
If working offline, please consult the documentation source in the
956
`docs` directory.
1057

58+
Documentation
59+
=============
60+
61+
The latest documentation can also be found at:
62+
http://xlutils.readthedocs.org/en/latest/
63+
64+
Problems?
65+
=========
66+
Try the following in this order:
67+
68+
- Read the source
69+
70+
- Ask a question on http://groups.google.com/group/python-excel/
71+
1172
Licensing
1273
=========
1374

docs/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
copyright = '2008-%s Simplistix Ltd' % datetime.datetime.now().year
2525
version = release = pkg_info.version
2626
exclude_trees = ['_build']
27-
unused_docs = ['description']
2827
pygments_style = 'sphinx'
2928

3029
# Options for HTML output

docs/description.rst

Lines changed: 0 additions & 30 deletions
This file was deleted.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
setup(
1313
name='xlutils',
14-
version=file(os.path.join(base_dir, name, 'version.txt')).read().strip(),
14+
version=open(os.path.join(base_dir, name, 'version.txt')).read().strip(),
1515
author='Chris Withers',
1616
author_email='chris@simplistix.co.uk',
1717
license='MIT',
1818
description="Utilities for working with Excel files that require both xlrd and xlwt",
19-
long_description=open(os.path.join(base_dir, 'docs', 'description.rst')).read(),
19+
long_description=open(os.path.join(base_dir, 'README.rst')).read(),
2020
url='http://www.python-excel.org',
2121
keywords="excel xls xlrd xlwt",
2222
classifiers=[

0 commit comments

Comments
 (0)