Skip to content

Commit 2a3eba5

Browse files
committed
Better change log, readme, setup file.
1 parent 6035237 commit 2a3eba5

File tree

4 files changed

+72
-41
lines changed

4 files changed

+72
-41
lines changed

CHANGELOG

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
==========
2+
Changelog:
3+
==========
4+
5+
v1.0 (master):
6+
7+
* Django 1.10 compatibility and total cleanup.
8+
* Full Python 3 compatibility.
9+
* Removed Pinax Group support.
10+
* Tests.
11+
12+
v0.3: (2009-08-06):
13+
14+
* If a wikipage was not found, the view now raises a proper Http404 instead of a
15+
(silent) HttpResponseNotFound. This gives you the ability to display a proper
16+
404 page.
17+
* All templates are now translatable using gettext.
18+
19+
v0.2 (2009-07-22):
20+
21+
* Edit-forms are now replaceable
22+
23+
.. _`django-attachments`: http://github.com/bartTC/django-attachments/

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
include LICENSE
22
include README.rst
3+
include CHANGELOG
34
recursive-include src/wakawaka/templates/wakawaka *
5+
recursive-include docs *

README.rst

-24
Original file line numberDiff line numberDiff line change
@@ -115,27 +115,3 @@ application into an existing project. It's alo used for the test suite::
115115
in a Django project..
116116

117117
.. _virtualenvwrapper: https://virtualenvwrapper.readthedocs.io/en/latest/
118-
119-
120-
Changelog:
121-
==========
122-
123-
v1.0 (master):
124-
125-
* Django 1.10 compatibility and total cleanup.
126-
* Full Python 3 compatibility.
127-
* Removed Pinax Group support.
128-
* Tests.
129-
130-
v0.3: (2009-08-06):
131-
132-
* If a wikipage was not found, the view now raises a proper Http404 instead of a
133-
(silent) HttpResponseNotFound. This gives you the ability to display a proper
134-
404 page.
135-
* All templates are now translatable using gettext.
136-
137-
v0.2 (2009-07-22):
138-
139-
* Edit-forms are now replaceable
140-
141-
.. _`django-attachments`: http://github.com/bartTC/django-attachments/

setup.py

+47-17
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,59 @@
11
#!/usr/bin/env python
2-
from setuptools import setup, find_packages
2+
from sys import exit
33

4-
requirements = [
5-
'django>=1.8',
6-
]
4+
from setuptools import find_packages, setup
5+
from setuptools.command.test import test as TestCommand
76

8-
test_requirements = [
9-
]
7+
8+
class Tox(TestCommand):
9+
def finalize_options(self):
10+
TestCommand.finalize_options(self)
11+
self.test_args = []
12+
self.test_suite = True
13+
14+
def run_tests(self):
15+
#import here, cause outside the eggs aren't loaded
16+
import tox
17+
errno = tox.cmdline(self.test_args)
18+
exit(errno)
19+
20+
long_description = u'\n\n'.join((
21+
open('README.rst').read(),
22+
open('CHANGELOG').read()
23+
))
1024

1125
setup(
1226
name='django-wakawaka',
13-
version='1.0a',
14-
description='A super simple wiki app written in Python using the Django Framwork',
15-
long_description=open('README.rst').read(),
27+
version='1.0a1',
28+
description='django-wakawka is a super simple wiki system written in Python '
29+
'using the Django framework.',
30+
long_description=long_description,
1631
author='Martin Mahner',
1732
author_email='[email protected]',
18-
url='http://github.com/bartTC/django-wakawaka/',
33+
url='https://github.com/bartTC/django-wakawaka/',
34+
classifiers=[
35+
'Development Status :: 3 - Alpha',
36+
'Environment :: Web Environment',
37+
'Intended Audience :: Developers',
38+
'License :: OSI Approved :: MIT License',
39+
'Operating System :: OS Independent',
40+
'Programming Language :: Python :: 2',
41+
'Programming Language :: Python :: 3',
42+
'Framework :: Django',
43+
],
1944
packages=find_packages(),
2045
package_data={
21-
'wakawaka/': [
22-
'static/*.*',
23-
'templates/*.*'
24-
]
46+
'dpaste': ['static/*.*', 'templates/*.*'],
47+
'docs': ['*'],
48+
},
49+
include_package_data=True,
50+
install_requires=[
51+
'django>=1.8',
52+
],
53+
tests_require=[
54+
'tox>=1.6.1'
55+
],
56+
cmdclass={
57+
'test': Tox
2558
},
26-
install_requires=requirements,
27-
tests_require=test_requirements,
28-
zip_safe=False,
2959
)

0 commit comments

Comments
 (0)