Tweaked the setup.py and manifest for a better result

This commit is contained in:
Corey Oordt 2010-05-28 09:53:31 -04:00
parent 908db01e46
commit 042790279d
2 changed files with 4 additions and 3 deletions

View file

@ -6,7 +6,7 @@ include LICENSE.txt
recursive-include categories *.html *.txt *.json *.html
recursive-include editor *.html *.txt *.json *.html *.gif *.png *.css *.js
recursive-include editor *.html *.gif *.png *.css *.js
recursive-include doc_src *.rst *.txt *.png *.css *.html *.js
include doc_src/Makefile

View file

@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
import categories
import os
@ -19,8 +19,9 @@ setup(
long_description=long_description,
author='Corey Oordt',
author_email='coordt@washingtontimes.com',
include_package_data=True,
url='http://opensource.washingtontimes.com/projects/django-categories/',
packages=['categories', 'editor'],
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',