forked from django-wiki/django-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More modifications for pypi, first 0.0.1 released - pip install wiki
- Loading branch information
1 parent
996800c
commit b68f0b5
Showing
3 changed files
with
8 additions
and
6 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
include README.rst | ||
recursive-include wiki/ *.html *.txt *.png *.js *.css *.gif | ||
recursive-include django_notify/ *.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 |
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 @@ | ||
README.md |
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 |
---|---|---|
|
@@ -24,15 +24,16 @@ def build_media_pattern(base_folder, file_extension): | |
packages = find_packages() | ||
|
||
package_data = dict( | ||
(package_name, template_patterns) | ||
(package_name, media_patterns) | ||
for package_name in packages | ||
) | ||
|
||
setup( | ||
name = "django-wiki", | ||
name = "wiki", | ||
version = "0.0.1", | ||
author = "Benjamin Bach", | ||
author_email = "[email protected]", | ||
url = "http://www.django-wiki.org", | ||
description = ("A wiki system written for the Django framework."), | ||
license = "GPLv3", | ||
keywords = "django wiki markdown", | ||
|
@@ -47,8 +48,8 @@ def build_media_pattern(base_folder, file_extension): | |
'django-mptt', | ||
], | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'License :: OSI Approved :: GPLv3', | ||
'Development Status :: 3 - Alpha', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Environment :: Web Environment', | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
|