Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix manifest, update version and author #4

Merged
merged 1 commit into from Apr 22, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1,4 +1,4 @@
include CHANGES.rst README.rst COPYING
include CHANGELOG.rst README.rst COPYING
recursive-include tests *
recursive-include docs *
global-exclude *.pyc
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -54,10 +54,10 @@ def run_tests(self):
name='django-babel',
description='Utilities for using Babel in Django',
long_description=read('README.rst') + u'\n\n' + read('CHANGELOG.rst'),
version='1.0-dev',
version='0.3.2',
license='BSD',
author='Christopher Lenz',
author_email='cmlenz@gmail.com',
author='Christopher Grebs',
author_email='cg@webshox.org',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

;)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If that is okay, I can also name it "django-babel" team. I actually don't care

url='http://github.com/graingert/django-babel/',
packages=find_packages(exclude=('tests',)),
tests_require=test_requires,
Expand Down