mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 08:16:54 +00:00
Various sphinx related fixes
This commit is contained in:
parent
9421b64895
commit
06db9e897c
4 changed files with 11 additions and 10 deletions
|
@ -1,3 +1,4 @@
|
|||
# This is a python package
|
||||
|
||||
__version__ = '0.6dev'
|
||||
__version__ = '0.6'
|
||||
__release__ = __version__ + 'dev'
|
||||
|
|
14
docs/conf.py
14
docs/conf.py
|
@ -40,15 +40,15 @@
|
|||
master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
project = u'Darc - Deduplicating Archiver'
|
||||
copyright = u'2010-2011, Jonas Borgström'
|
||||
project = 'Darc - Deduplicating Archiver'
|
||||
copyright = '2010-2013, Jonas Borgström'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = darc.__release__
|
||||
version = darc.__version__
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = darc.__release__
|
||||
|
||||
|
@ -178,8 +178,8 @@
|
|||
# Grouping the document tree into LaTeX files. List of tuples
|
||||
# (source start file, target name, title, author, documentclass [howto/manual]).
|
||||
latex_documents = [
|
||||
('index', 'Darc.tex', u'Darc Documentation',
|
||||
u'Jonas Borgström', 'manual'),
|
||||
('index', 'Darc.tex', 'Darc Documentation',
|
||||
'Jonas Borgström', 'manual'),
|
||||
]
|
||||
|
||||
# The name of an image file (relative to this directory) to place at the top of
|
||||
|
@ -211,6 +211,6 @@
|
|||
# One entry per manual page. List of tuples
|
||||
# (source start file, name, description, authors, manual section).
|
||||
man_pages = [
|
||||
('index', 'darc', u'Darc Documentation',
|
||||
[u'Jonas Borgström'], 1)
|
||||
('index', 'darc', 'Darc Documentation',
|
||||
['Jonas Borgström'], 1)
|
||||
]
|
||||
|
|
2
setup.py
2
setup.py
|
@ -46,7 +46,7 @@ def __init__(self, *args, **kwargs):
|
|||
|
||||
setup(
|
||||
name='Darc',
|
||||
version=darc.__version__,
|
||||
version=darc.__release__,
|
||||
author='Jonas Borgström',
|
||||
author_email='jonas@borgstrom.se',
|
||||
url='http://github.com/jborg/darc/',
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -2,4 +2,4 @@
|
|||
envlist = py32, py33
|
||||
|
||||
[testenv]
|
||||
commands = fakeroot {envpython} -m darc.testsuite.run
|
||||
commands = fakeroot {envpython} -m darc.testsuite.run []
|
||||
|
|
Loading…
Reference in a new issue