Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Kura committed Aug 8, 2014
1 parent 876c798 commit 5002fd1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 16 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ pypi:
python setup.py register
python setup.py sdist upload
python setup.py bdist_wheel upload
curl -X POST https://readthedocs.org/build/yarg

test:
nosetests
Expand Down
33 changes: 18 additions & 15 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys
import datetime
import os
import sys

from yarg import __version__

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -50,16 +53,16 @@

# General information about the project.
project = u'yarg'
copyright = u'2014, Kura'
copyright = u'{0}, Kura'.format(datetime.datetime.now().year

# 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 = '0.1.0'
version = __version__
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = __version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -189,7 +192,7 @@

# -- Options for LaTeX output ---------------------------------------------

latex_elements = {
# latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',

Expand All @@ -198,15 +201,15 @@

# Additional stuff for the LaTeX preamble.
#'preamble': '',
}
# }

# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'yarg.tex', u'yarg Documentation',
u'Kura', 'manual'),
]
# latex_documents = [
# ('index', 'yarg.tex', u'yarg Documentation',
# u'Kura', 'manual'),
# ]

# The name of an image file (relative to this directory) to place at the top of
# the title page.
Expand Down Expand Up @@ -247,11 +250,11 @@
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'yarg', u'yarg Documentation',
u'Kura', 'yarg', 'One line description of project.',
'Miscellaneous'),
]
# texinfo_documents = [
# ('index', 'yarg', u'yarg Documentation',
# u'Kura', 'yarg', 'One line description of project.',
# 'Miscellaneous'),
# ]

# Documents to append as an appendix to all manuals.
#texinfo_appendices = []
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@

setup(name='yarg',
version=version,
url="https://kura.io/yarg/",
url="https://yarg.readthedocs.org/",
bugtrack_url="https:/github.com/kura/yarg/issues",
home_page="https://yarg.readthedocs.org/",
author="Kura",
author_email="kura@kura.io",
maintainer="Kura",
Expand Down

0 comments on commit 5002fd1

Please sign in to comment.