Skip to content

Commit

Permalink
Work on documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitar committed Jun 5, 2012
1 parent 23e8784 commit 9b62749
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 18 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (C) 2012 wlan slovenija, open wireless network of Slovenia
Copyright (C) 2011-2012 wlan slovenija, open wireless network of Slovenia

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.in
@@ -1 +1,5 @@
recursive-include missing/static *
include docs/Makefile docs/*.py docs/*.rst docs/_ext/*.py
include COPYING
include LICENSE
include *.py *.txt *.rst
14 changes: 14 additions & 0 deletions README.rst
@@ -0,0 +1,14 @@
django-missing
==============

This Django application bundles some common and useful features which have not
(yet) found a way into Django itself.

You are invited to contribute your own features so that together we create a
powerfull and good library of Django additions. Because sometimes you cannot
imagine an useful feature before somebody shows it to you. So it is useful to
have all of them collected together.

Documentation is found at:

http://django-missing.readthedocs.org/
7 changes: 0 additions & 7 deletions README.txt

This file was deleted.

8 changes: 4 additions & 4 deletions docs/conf.py
Expand Up @@ -46,7 +46,7 @@

# General information about the project.
project = u'django-missing'
copyright = u'2011, Mitar'
copyright = u'2011-2012, wlan slovenija'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -169,7 +169,7 @@
#html_file_suffix = None

# Output file base name for HTML help builder.
htmlhelp_basename = 'django-missingdoc'
htmlhelp_basename = 'djangomissingdoc'


# -- Options for LaTeX output --------------------------------------------------
Expand All @@ -184,7 +184,7 @@
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'django-missing.tex', u'django-missing Documentation',
u'Mitar', 'manual'),
u'wlan slovenija', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -217,7 +217,7 @@
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'django-missing', u'django-missing Documentation',
[u'Mitar'], 1)
[u'wlan slovenija'], 1)
]


Expand Down
11 changes: 5 additions & 6 deletions setup.py
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import os

from setuptools import setup, find_packages
Expand All @@ -9,17 +11,13 @@
name = 'django-missing',
version = VERSION,
description = 'Some missing features in Django. Are not missing anymore.',
long_description = open(os.path.join(os.path.dirname(__file__), 'README.txt')).read(),
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author = 'Mitar',
author_email = 'mitar.django@tnode.com',
url = 'https://bitbucket.org/mitar/django-missing',
license = "AGPLv3",
packages = find_packages(),
package_data = {
'missing' : [
'static/missing/*',
],
},
package_data = {},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand All @@ -32,6 +30,7 @@
include_package_data = True,
zip_safe = False,
install_requires = [
'Django>=1.2',
'django-staticfiles',
],
)

0 comments on commit 9b62749

Please sign in to comment.