Browse Source

Update some documentation.

tags/v1.0^2
Ben Kurtovic 10 years ago
parent
commit
4dfd297472
7 changed files with 64 additions and 10 deletions
  1. +6
    -0
      README.md
  2. +8
    -1
      bitshift/__init__.py
  3. +27
    -0
      docs/source/api/bitshift.crawler.rst
  4. +19
    -0
      docs/source/api/bitshift.database.rst
  5. +2
    -7
      docs/source/api/bitshift.rst
  6. +1
    -1
      docs/source/conf.py
  7. +1
    -1
      setup.py

+ 6
- 0
README.md View File

@@ -32,3 +32,9 @@ root. Note that this will revert any custom changes made to the files in
`docs/source/api`, so you might want to update them by hand instead.

[SASS]: http://sass-lang.com/guide

Releasing
---------

- Update `__version__` in `bitshift/__init__.py`, `version` in `setup.py`, and
`version` and `release` in `docs/conf.py`.

+ 8
- 1
bitshift/__init__.py View File

@@ -1 +1,8 @@
from . import assets, codelet, config, database, parser, query, crawler
# -*- coding: utf-8 -*-

__author__ = "Benjamin Attal, Ben Kurtovic, Severyn Kozak"
__copyright__ = "Copyright (c) 2014 Benjamin Attal, Ben Kurtovic, Severyn Kozak"
__license__ = "MIT License"
__version__ = "0.1.dev"

from . import assets, codelet, config, crawler, database, parser, query

+ 27
- 0
docs/source/api/bitshift.crawler.rst View File

@@ -0,0 +1,27 @@
crawler Package
===============

:mod:`crawler` Package
----------------------

.. automodule:: bitshift.crawler
:members:
:undoc-members:
:show-inheritance:

:mod:`crawler` Module
---------------------

.. automodule:: bitshift.crawler.crawler
:members:
:undoc-members:
:show-inheritance:

:mod:`indexer` Module
---------------------

.. automodule:: bitshift.crawler.indexer
:members:
:undoc-members:
:show-inheritance:


+ 19
- 0
docs/source/api/bitshift.database.rst View File

@@ -0,0 +1,19 @@
database Package
================

:mod:`database` Package
-----------------------

.. automodule:: bitshift.database
:members:
:undoc-members:
:show-inheritance:

:mod:`migration` Module
-----------------------

.. automodule:: bitshift.database.migration
:members:
:undoc-members:
:show-inheritance:


+ 2
- 7
docs/source/api/bitshift.rst View File

@@ -33,19 +33,13 @@ bitshift Package
:undoc-members:
:show-inheritance:

:mod:`database` Module

.. automodule:: bitshift.database
:members:
:undoc-members:
:show-inheritance:

Subpackages
-----------

.. toctree::

bitshift.crawler
bitshift.database
bitshift.parser
bitshift.query


+ 1
- 1
docs/source/conf.py View File

@@ -59,7 +59,7 @@ copyright = u'2014, Benjamin Attal, Ben Kurtovic, Severyn Kozak'
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = '0.1.dev'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.


+ 1
- 1
setup.py View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages

setup(
name = "bitshift",
version = "0.1",
version = "0.1.dev",
packages = find_packages(),
install_requires = [
"Flask>=0.10.1", "pygments>=1.6", "requests>=2.2.0",


Loading…
Cancel
Save