Skip to content

Commit

Permalink
do not import project in setup.py time - its bad
Browse files Browse the repository at this point in the history
  • Loading branch information
kvbik committed Jun 3, 2009
1 parent d1633c2 commit e86859e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion djangobaselibrary/__init__.py
@@ -1,5 +1,5 @@

VERSION = (0, 1, 0)
VERSION = (0, 0, 0)

__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -4,9 +4,13 @@
# all fields marked with TODO: REPLACE
# must be filled with some meanigful values

VERSION = (0, 0, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

setup(
name = 'djangobaselibrary',
version = djangobaselibrary.__versionstr__,
version = __versionstr__,
description = 'Django Base Library', # TODO: REPLACE
long_description = '\n'.join((
'Django Base Library',
Expand Down

0 comments on commit e86859e

Please sign in to comment.