Commit b68f0b5a by benjaoming

More modifications for pypi, first 0.0.1 released - pip install wiki

parent 996800cd
include README.rst include README.rst
recursive-include wiki/ *.html *.txt *.png *.js *.css *.gif recursive-include wiki *.html *.txt *.png *.js *.css *.gif
recursive-include django_notify/ *.html *.txt *.png *.js *.css *.gif recursive-include django_notify *.html *.txt *.png *.js *.css *.gif
README.md
\ No newline at end of file
...@@ -24,15 +24,16 @@ media_patterns = ( build_media_pattern("templates", "html") + ...@@ -24,15 +24,16 @@ media_patterns = ( build_media_pattern("templates", "html") +
packages = find_packages() packages = find_packages()
package_data = dict( package_data = dict(
(package_name, template_patterns) (package_name, media_patterns)
for package_name in packages for package_name in packages
) )
setup( setup(
name = "django-wiki", name = "wiki",
version = "0.0.1", version = "0.0.1",
author = "Benjamin Bach", author = "Benjamin Bach",
author_email = "benjamin@overtag.dk", author_email = "benjamin@overtag.dk",
url = "http://www.django-wiki.org",
description = ("A wiki system written for the Django framework."), description = ("A wiki system written for the Django framework."),
license = "GPLv3", license = "GPLv3",
keywords = "django wiki markdown", keywords = "django wiki markdown",
...@@ -47,8 +48,8 @@ setup( ...@@ -47,8 +48,8 @@ setup(
'django-mptt', 'django-mptt',
], ],
classifiers=[ classifiers=[
'Development Status :: 2 - Pre-Alpha', 'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GPLv3', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Web Environment', 'Environment :: Web Environment',
'Framework :: Django', 'Framework :: Django',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment