Skip to content

Commit

Permalink
Reorder db documentation. Update setup script to host a project on PY…
Browse files Browse the repository at this point in the history
…PI. Update README with documentation link.
  • Loading branch information
GrAndSE committed Apr 23, 2012
1 parent 374c4ee commit 8b00db2
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 41 deletions.
17 changes: 17 additions & 0 deletions MANIFEST
Expand Up @@ -2,6 +2,16 @@
README
setup.py
lighty/__init__.py
lighty/commands.py
lighty/conf.py
lighty/monads.py
lighty/validators.py
lighty/db/__init__.py
lighty/db/backend.py
lighty/db/fields.py
lighty/db/functor.py
lighty/db/models.py
lighty/db/query.py
lighty/templates/__init__.py
lighty/templates/context.py
lighty/templates/filter.py
Expand All @@ -10,3 +20,10 @@ lighty/templates/tag.py
lighty/templates/template.py
lighty/templates/templatefilters.py
lighty/templates/templatetags.py
lighty/wsgi/__init__.py
lighty/wsgi/commands.py
lighty/wsgi/decorators.py
lighty/wsgi/handler.py
lighty/wsgi/http.py
lighty/wsgi/static.py
lighty/wsgi/urls.py
3 changes: 2 additions & 1 deletion README
Expand Up @@ -12,4 +12,5 @@ Lighty is a simple all in one web framework writen in Python. It includes:
urls for view name and arguments taken.
- Bindings to WSGI and Tornado.

It's not a full list of features. To read more look into documentation.
It's not a full list of features. To read more look into documentation at
http://packages.python.org/lighty/index.html.
3 changes: 2 additions & 1 deletion README.markdown
Expand Up @@ -12,4 +12,5 @@ Lighty is a simple all in one web framework writen in Python. It includes:
urls for view name and arguments taken.
- Bindings to WSGI and Tornado.

It's not a full list of features. To read more look into documentation.
It's not a full list of features. To read more look into documentation at
http://packages.python.org/lighty/index.html.
34 changes: 17 additions & 17 deletions doc/source/lighty.db.rst
@@ -1,41 +1,41 @@
:mod:`db` Package (Lighty framework ORM layer)
:mod:`lighty.db` Package (Lighty framework ORM layer)
====================================================

.. automodule:: lighty.db
:members
:members:

:mod:`backend` Module
---------------------
:mod:`models` Module
--------------------

.. automodule:: lighty.db.backend
.. automodule:: lighty.db.models
:members:
:show-inheritance:

:mod:`fields` Module
--------------------
:mod:`query` Module
-------------------

.. automodule:: lighty.db.fields
.. automodule:: lighty.db.query
:members:
:show-inheritance:

:mod:`functor` Module
---------------------
:mod:`fields` Module
--------------------

.. automodule:: lighty.db.functor
.. automodule:: lighty.db.fields
:members:
:show-inheritance:

:mod:`models` Module
--------------------
:mod:`backend` Module
---------------------

.. automodule:: lighty.db.models
.. automodule:: lighty.db.backend
:members:
:show-inheritance:

:mod:`query` Module
-------------------
:mod:`functor` Module
---------------------

.. automodule:: lighty.db.query
.. automodule:: lighty.db.functor
:members:
:show-inheritance:

47 changes: 25 additions & 22 deletions setup.py
Expand Up @@ -19,26 +19,29 @@
from distutils.core import setup

setup(
name='lighty',
version='0.4.1',
description='Simple all-in-one web framework',
long_description=__doc__,
keywords='Template HTML XML',
author='Andrey Grygoryev',
author_email='undeadgrandse@gmail.com',
license='BSD',
url='https://github.com/GrAndSE/lighty',
packages=['lighty', 'lighty.db', 'lighty.templates', 'lighty.wsgi'],
platforms="any",
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: WSGI'
],
name='lighty',
version='0.4.1',
description='Simple all-in-one web framework',
long_description=__doc__,
keywords='Template HTML XML',
author='Andrey Grygoryev',
author_email='undeadgrandse@gmail.com',
license='BSD',
url='https://github.com/GrAndSE/lighty',
packages=['lighty', 'lighty.db', 'lighty.templates', 'lighty.wsgi'],
platforms="any",
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
],
)

0 comments on commit 8b00db2

Please sign in to comment.