release 0.1

This commit is contained in:
Mathieu Agopian
2013-03-20 09:06:35 +01:00
parent 36f9e61676
commit f363d27058
3 changed files with 10 additions and 5 deletions

View File

@@ -11,18 +11,21 @@ def read_relative_file(filename):
return f.read()
LONG_DESC = "%s\r\n\r\n%s" % (read_relative_file('README.rst'),
read_relative_file('CHANGELOG'))
if __name__ == '__main__': # ``import setup`` doesn't trigger setup().
setup(name='mailbot',
version=read_relative_file('VERSION').strip(),
description="MailBot: execute callback on mail reception",
long_description=read_relative_file('README.rst'),
long_description=LONG_DESC,
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
],
'Programming Language :: Python'],
keywords='mail callback',
author='Mathieu Agopian',
author_email='mathieu.agopian@gmail.com',