-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better change log, readme, setup file.
- Loading branch information
Showing
4 changed files
with
72 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
========== | ||
Changelog: | ||
========== | ||
|
||
v1.0 (master): | ||
|
||
* Django 1.10 compatibility and total cleanup. | ||
* Full Python 3 compatibility. | ||
* Removed Pinax Group support. | ||
* Tests. | ||
|
||
v0.3: (2009-08-06): | ||
|
||
* If a wikipage was not found, the view now raises a proper Http404 instead of a | ||
(silent) HttpResponseNotFound. This gives you the ability to display a proper | ||
404 page. | ||
* All templates are now translatable using gettext. | ||
|
||
v0.2 (2009-07-22): | ||
|
||
* Edit-forms are now replaceable | ||
|
||
.. _`django-attachments`: http://github.com/bartTC/django-attachments/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
include LICENSE | ||
include README.rst | ||
include CHANGELOG | ||
recursive-include src/wakawaka/templates/wakawaka * | ||
recursive-include docs * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,59 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup, find_packages | ||
from sys import exit | ||
|
||
requirements = [ | ||
'django>=1.8', | ||
] | ||
from setuptools import find_packages, setup | ||
from setuptools.command.test import test as TestCommand | ||
|
||
test_requirements = [ | ||
] | ||
|
||
class Tox(TestCommand): | ||
def finalize_options(self): | ||
TestCommand.finalize_options(self) | ||
self.test_args = [] | ||
self.test_suite = True | ||
|
||
def run_tests(self): | ||
#import here, cause outside the eggs aren't loaded | ||
import tox | ||
errno = tox.cmdline(self.test_args) | ||
exit(errno) | ||
|
||
long_description = u'\n\n'.join(( | ||
open('README.rst').read(), | ||
open('CHANGELOG').read() | ||
)) | ||
|
||
setup( | ||
name='django-wakawaka', | ||
version='1.0a', | ||
description='A super simple wiki app written in Python using the Django Framwork', | ||
long_description=open('README.rst').read(), | ||
version='1.0a1', | ||
description='django-wakawka is a super simple wiki system written in Python ' | ||
'using the Django framework.', | ||
long_description=long_description, | ||
author='Martin Mahner', | ||
author_email='[email protected]', | ||
url='http://github.com/bartTC/django-wakawaka/', | ||
url='https://github.com/bartTC/django-wakawaka/', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
'Framework :: Django', | ||
], | ||
packages=find_packages(), | ||
package_data={ | ||
'wakawaka/': [ | ||
'static/*.*', | ||
'templates/*.*' | ||
] | ||
'dpaste': ['static/*.*', 'templates/*.*'], | ||
'docs': ['*'], | ||
}, | ||
include_package_data=True, | ||
install_requires=[ | ||
'django>=1.8', | ||
], | ||
tests_require=[ | ||
'tox>=1.6.1' | ||
], | ||
cmdclass={ | ||
'test': Tox | ||
}, | ||
install_requires=requirements, | ||
tests_require=test_requirements, | ||
zip_safe=False, | ||
) |