import os
import setuptools
from distutils.core import setup


setup(
    name='stamper',
    version='0.0.1',
    author='Francisco de Borja Lopez Rio',
    author_email='borja@codigo23.net',
    packages=['stamper'],
    url='https://bitbucket.org/codigo23/stamper',
    download_url='http://pypi.python.org/pypi/stamper#downloads',
    license='BSD licence, see LICENSE',
    description='Time tracking tool',
    long_description=open('README').read(),
    scripts=['bin/stamp', 'bin/stamps'],
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Environment :: Console',
        'Environment :: No Input/Output (Daemon)',
        'Intended Audience :: End Users/Desktop',
        'License :: OSI Approved :: BSD License',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
        'Topic :: Office/Business',
        'Topic :: Office/Business :: Scheduling',
        'Topic :: Utilities',
        ]
)
