mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
Tweaked the setup.py and manifest for a better result
This commit is contained in:
parent
908db01e46
commit
042790279d
2 changed files with 4 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
5
setup.py
5
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue