Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(302)

Side by Side Diff: third_party/APScheduler/setup.py

Issue 6673078: Initial checkin of media test matrix class, which will be used for media perf test later. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Put APScheduler in third_party directory for Media Performance test. Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/APScheduler/setup.cfg ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 )
OLDNEW
« no previous file with comments | « third_party/APScheduler/setup.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698