Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removed versiontools until it gets support for manually incrementing …
…dev releases
  • Loading branch information
paltman committed Aug 28, 2011
1 parent bc645c3 commit 2fee53d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kaleo/__init__.py
@@ -1,2 +1,2 @@
# following PEP 386, versiontools will pick it up
__version__ = (0, 1, 0, "dev", 0)
__version__ = "0.1.dev1"
8 changes: 3 additions & 5 deletions setup.py
Expand Up @@ -109,11 +109,12 @@ def find_package_data(
AUTHOR = "Eldarion"
AUTHOR_EMAIL = "paltman@eldarion.com"
URL = "http://github.com/eldarion/kaleo"
VERSION = __import__(PACKAGE).__version__


setup(
name=NAME,
version=":versiontools:%s:" % PACKAGE,
version=VERSION,
description=DESCRIPTION,
long_description=read("README.rst"),
author=AUTHOR,
Expand All @@ -131,9 +132,6 @@ def find_package_data(
"Programming Language :: Python",
"Framework :: Django",
],
zip_safe=False,
setup_requires=[
"versiontools >= 1.6"
]
zip_safe=False
)

0 comments on commit 2fee53d

Please sign in to comment.