-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.3 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import pypandoc
long_description = pypandoc.convert_file('README.rst', 'rst')
except(IOError, ImportError):
long_description = None
setup(
name='apscheduler-intervalcron',
packages=['intervalcron'],
version='0.2.1',
py_modules=['intervalcron'],
install_requires=[
'apscheduler',
'python-dateutil'
],
test_suite="tests",
entry_points={
'apscheduler.triggers': ['intervalcron = intervalcron:IntervalCronTrigger']
},
license='MIT',
description='Interval Cron Trigger Plugin for APScheduler',
long_description=long_description,
author='Neeraj',
author_email='durgapalneeraj@gmail.com',
url='https://github.com/Code0987/apscheduler-intervalcron',
keywords=[
'apscheduler',
'interval',
'cron'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)