-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
34 lines (31 loc) · 1.1 KB
/
setup.py
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import subprocess
pandoc = subprocess.Popen(["pandoc", "-t", "rst", "README.md"],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
long_description, _ = pandoc.communicate()
setup(
name="cronex",
version="0.1.3.1",
description=("This module provides an easy to use interface for cron-like"
" task scheduling."),
author="Eric Pruitt",
author_email="[email protected]",
url="https://github.com/ericpruitt/cronex",
license="MIT",
keywords=["cron", "scheduler", "triggers", "time", "quartz"],
packages=["cronex"],
long_description=long_description.decode("utf-8"),
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)