OLD | NEW |
(Empty) | |
| 1 # coding: utf-8 |
| 2 try: |
| 3 from setuptools import setup |
| 4 except ImportError: |
| 5 from distutils.core import setup |
| 6 |
| 7 |
| 8 setup( |
| 9 name='APScheduler', |
| 10 version='1.3.1', |
| 11 description='In-process task scheduler with Cron-like capabilities', |
| 12 long_description=open('README.txt').read(), |
| 13 author='Alex Gronholm', |
| 14 author_email='apscheduler@nextday.fi', |
| 15 url='http://apscheduler.nextday.fi/', |
| 16 classifiers=[ |
| 17 'Development Status :: 5 - Production/Stable', |
| 18 'Intended Audience :: Developers', |
| 19 'License :: OSI Approved :: MIT License', |
| 20 'Programming Language :: Python', |
| 21 'Programming Language :: Python :: 2.4', |
| 22 'Programming Language :: Python :: 2.5', |
| 23 'Programming Language :: Python :: 2.6', |
| 24 'Programming Language :: Python :: 3', |
| 25 ], |
| 26 keywords='scheduling cron', |
| 27 license='MIT', |
| 28 packages=['apscheduler'], |
| 29 zip_safe=True, |
| 30 test_suite='nose.collector', |
| 31 tests_require=['nose'] |
| 32 ) |
OLD | NEW |