parse_crontab/setup.py
Josiah Carlson 4181061e84 Bump version, update classifiers
* Thanks to Graham Bell for updates to PyPE to support Python 3.2
* Also thanks to Graham for 7 being an alias for Sunday
2012-08-12 23:43:17 -07:00

26 lines
806 B
Python

#!/usr/bin/env python
from distutils.core import setup
with open('README') as f:
long_description = f.read()
setup(
name='crontab',
version='.15',
description='Parse and use crontab schedules in Python',
author='Josiah Carlson',
author_email='josiah.carlson@gmail.com',
url='https://github.com/josiahcarlson/parse-crontab',
packages=['crontab', 'tests'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
],
license='GNU LGPL v2.1',
long_description=long_description,
)