Commit 3b99eac1 authored by Kai Lautaportti's avatar Kai Lautaportti

Release 1.5.1

parent 9fc9de5a
Change History Change History
************** **************
1.5.1 (xxxx-xx-xx) 1.5.1 (2012-05-21)
================== ==================
- PEP8 / Pyflakes cleanup. - PEP8 / Pyflakes cleanup.
......
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os
version = '1.5.0' version = '1.5.1'
name = 'hexagonit.recipe.cmmi' name = 'hexagonit.recipe.cmmi'
def read(*rnames): def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read() return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(name=name, setup(name=name,
version=version, version=version,
description="zc.buildout recipe for compiling and installing source distributions.", description="zc.buildout recipe for compiling and installing source distributions.",
long_description= ( long_description=(
read('README.txt') read('README.txt')
+ '\n' + + '\n' +
read('CHANGES.txt') read('CHANGES.txt')
...@@ -18,7 +20,7 @@ setup(name=name, ...@@ -18,7 +20,7 @@ setup(name=name,
'Detailed Documentation\n' 'Detailed Documentation\n'
'**********************\n' '**********************\n'
+ '\n' + + '\n' +
read('hexagonit','recipe','cmmi','README.txt') read('hexagonit', 'recipe', 'cmmi', 'README.txt')
+ '\n' + + '\n' +
'Download\n' 'Download\n'
'***********************\n' '***********************\n'
...@@ -39,12 +41,11 @@ setup(name=name, ...@@ -39,12 +41,11 @@ setup(name=name,
namespace_packages=['hexagonit', 'hexagonit.recipe'], namespace_packages=['hexagonit', 'hexagonit.recipe'],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires = ['zc.buildout', 'setuptools', 'hexagonit.recipe.download'], install_requires=['zc.buildout', 'setuptools', 'hexagonit.recipe.download'],
extras_require={ extras_require={
'test' : ['zope.testing'], 'test': ['zope.testing'],
}, },
tests_require = ['zope.testing'], tests_require=['zope.testing'],
test_suite = '%s.tests.test_suite' % name, test_suite='%s.tests.test_suite' % name,
entry_points = { 'zc.buildout' : ['default = %s:Recipe' % name] }, entry_points={'zc.buildout': ['default = %s:Recipe' % name]},
) )
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment