forked from asher/chronos-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 793 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 793 Bytes
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
import os
from setuptools import setup
setup(
name = "chronos-python",
version = "0.38.0",
author = "Asher Feldman",
author_email = "asher@democument.com",
description = ("A Python client libary for the Chronos Job Scheduler."),
license = "MIT",
keywords = "chronos",
packages=['chronos'],
scripts=['bin/chronos-sync-jobs.py', 'bin/chronos-nagios.py'],
long_description="A python client library for the Chronos Job Scheduler, with support scripts.",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
],
install_requires = [
'httplib2 >= 0.9'
],
url='https://github.com/asher/chronos-python',
)