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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/APScheduler/setup.cfg ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/APScheduler/setup.py
diff --git a/third_party/APScheduler/setup.py b/third_party/APScheduler/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..b16409725e4eeff250bfc7d5747c1c32e9381ec0
--- /dev/null
+++ b/third_party/APScheduler/setup.py
@@ -0,0 +1,32 @@
+# coding: utf-8
+try:
+ from setuptools import setup
+except ImportError:
+ from distutils.core import setup
+
+
+setup(
+ name='APScheduler',
+ version='1.3.1',
+ description='In-process task scheduler with Cron-like capabilities',
+ long_description=open('README.txt').read(),
+ author='Alex Gronholm',
+ author_email='apscheduler@nextday.fi',
+ url='http://apscheduler.nextday.fi/',
+ classifiers=[
+ 'Development Status :: 5 - Production/Stable',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: MIT License',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2.4',
+ 'Programming Language :: Python :: 2.5',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 3',
+ ],
+ keywords='scheduling cron',
+ license='MIT',
+ packages=['apscheduler'],
+ zip_safe=True,
+ test_suite='nose.collector',
+ tests_require=['nose']
+)
« 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