Bump version for release (closes #85)
This commit is contained in:
parent
52da0d882e
commit
bf4a5ae097
9
setup.py
9
setup.py
|
@ -30,12 +30,17 @@ from distutils.core import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'mitogen',
|
name = 'mitogen',
|
||||||
version = '0.0.1',
|
version = '0.0.2',
|
||||||
description = 'Library for writing distributed self-replicating programs.',
|
description = 'Library for writing distributed self-replicating programs.',
|
||||||
author = 'David Wilson',
|
author = 'David Wilson',
|
||||||
license = 'New BSD',
|
license = 'New BSD',
|
||||||
url = 'https://github.com/dw/mitogen/',
|
url = 'https://github.com/dw/mitogen/',
|
||||||
packages = ['mitogen', 'ansible_mitogen'],
|
packages = [
|
||||||
|
'mitogen',
|
||||||
|
'ansible_mitogen',
|
||||||
|
'ansible_mitogen.connection',
|
||||||
|
'ansible_mitogen.strategy',
|
||||||
|
],
|
||||||
zip_safe = False,
|
zip_safe = False,
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
|
|
Loading…
Reference in New Issue