Skip to content

Commit

Permalink
prepare for pypi packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
zbyte64 committed Jun 18, 2012
1 parent eedb90b commit aa9cbe6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,6 +2,7 @@
*.pye *.pye
*.egg-info *.egg-info
build build
dist
bin bin
*.db *.db
include include
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
recursive-include reportengine/templates *
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -2,7 +2,7 @@


from setuptools import setup, find_packages from setuptools import setup, find_packages


VERSION = '0.1' VERSION = '0.2'
LONG_DESC = """\ LONG_DESC = """\
Django Report Engine provides a reporting framework for Django 1.1+. Its goal is to be lightweight, provide multiple output formats, easily integrate into existing applications, and be open ended to both direct SQL reports, ORM based reports, or any other type of report imaginable. It is also attempting to be reasonably batteries-included with some basic Date based filtering assumptions, and simple namespacing of reports. Django Report Engine provides a reporting framework for Django 1.1+. Its goal is to be lightweight, provide multiple output formats, easily integrate into existing applications, and be open ended to both direct SQL reports, ORM based reports, or any other type of report imaginable. It is also attempting to be reasonably batteries-included with some basic Date based filtering assumptions, and simple namespacing of reports.
Expand All @@ -26,10 +26,11 @@
maintainer_email = 'nikolaj@cukerinteractive.com', maintainer_email = 'nikolaj@cukerinteractive.com',
url='http://github.com/cuker/django-reportengine', url='http://github.com/cuker/django-reportengine',
license='MIT License', license='MIT License',
packages=['reportengine'], packages=find_packages(exclude=['example', 'example.example_reports', 'tests']),
zip_safe=False, zip_safe=False,
install_requires=[ install_requires=[
], ],
test_suite='tests.runtests.runtests', test_suite='tests.runtests.runtests',
include_package_data = True,
) )


0 comments on commit aa9cbe6

Please sign in to comment.