Release 0.0.1.

This commit is contained in:
Robert Collins 2012-10-27 22:41:36 +13:00
parent 01f6a7eefb
commit 7705fda3e0
3 changed files with 11 additions and 3 deletions

1
.gitignore vendored
View File

@ -12,6 +12,7 @@ var
sdist
develop-eggs
.installed.cfg
MANIFEST
# Installer logs
pip-log.txt

View File

@ -22,7 +22,7 @@ __all__ = [
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
# Otherwise it is major.minor.micro~$(revno).
__version__ = (0, 0, 1, 'dev', 0)
__version__ = (0, 0, 1, 'final', 0)
def try_import(name, alternative=None, error_callback=None):

View File

@ -5,6 +5,7 @@ from distutils.core import setup
import os.path
import extras
testtools = extras.try_import('testtools')
def get_version():
@ -17,7 +18,13 @@ def get_version():
def get_long_description():
readme_path = os.path.join(
os.path.dirname(__file__), 'README.rst')
return open(manual_path).read()
return open(readme_path).read()
cmdclass = {}
if testtools is not None:
cmdclass['test'] = testtools.TestCommand
setup(name='extras',
@ -33,4 +40,4 @@ setup(name='extras',
'extras',
'extras.tests',
],
cmdclass={'test': testtools.TestCommand})
cmdclass=cmdclass)