import os
from distutils.core import setup

version = '0.1.0'
README = os.path.join(os.path.dirname(__file__), 'README.txt')
long_description = open(README).read() + 'nn'

setup(name='orgreport',
      version=version,
      description=("Format output in the Emacs org-mode format"),
      long_description=long_description,
      classifiers=[
        "Programming Language :: Python",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Topic :: Text Editors :: Emacs"
        ],
      keywords='emacs org-mode',
      author='Olivier Schwander',
      author_email='olivier.schwander@ens-lyon.org',
      url='http://chadok.info/orglog',
      license='BSD',
      py_modules=['orgreport'],
      )

