Skip to content

Commit 047292c

Browse files
committed
More cleanup.
1 parent 5635838 commit 047292c

File tree

6 files changed

+28
-5
lines changed

6 files changed

+28
-5
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build
2+
dist
3+
*.pyc
4+
BabelDjango.egg-info

AUTHORS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
BabelDjango is written and maintained by the BabelDjango team and various
2+
contributors:
3+
4+
Maintainer and Current Project Lead:
5+
6+
- Christopher Lenz <[email protected]>
7+
8+
Contributors:
9+
10+
- Felix Schwarz <[email protected]>
11+
- Jeroen Ruigrok van der Werven <[email protected]>
12+
- Ramiro Morales <[email protected]>
13+
14+
BabelDjango was previously developed under the Copyright of Edgewall Software.
15+
The following copyright notice holds true for releases before 2013: "Copyright
16+
(c) 2007 - 2011 by Edgewall Software"

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2007 Edgewall Software
1+
Copyright (C) 2013 BabelDjango Team
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ gets updated.
9595
Then, you run the `pybabel update` command to merge the changes into the
9696
translation catalogs:
9797

98-
```bash $ pybabel update -D django -i mypkg/locale/django.pot -d mypkg/locale
98+
```bash
99+
$ pybabel update -D django -i mypkg/locale/django.pot -d mypkg/locale
99100
```
100101

101102
This will update all the `.po` files found in the `mypkg/locale` directory.

babeldjango/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# -*- coding: utf-8 -*-
2+
3+
__version__ = '1.0-dev'

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
setup(
1010
name = 'BabelDjango',
1111
description = 'Utilities for using Babel in Django',
12-
version = '1.0',
12+
version = '1.0-dev',
1313
license = 'BSD',
1414
author = 'Christopher Lenz',
1515
author_email = '[email protected]',
@@ -19,13 +19,12 @@
1919
install_requires = ['Babel'],
2020

2121
classifiers=[
22-
'Development Status :: 5 - Production/Stable',
22+
'Development Status :: 4 - Beta',
2323
'Environment :: Web Environment',
2424
'Intended Audience :: Developers',
2525
'License :: OSI Approved :: BSD License',
2626
'Operating System :: OS Independent',
2727
'Programming Language :: Python',
28-
'Programming Language :: Python :: 3',
2928
'Topic :: Software Development :: Libraries :: Python Modules',
3029
],
3130

0 commit comments

Comments
 (0)