-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (51 loc) · 1.71 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (51 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
import os
from setuptools import setup
def load(filename):
try:
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read()
except IOError:
return ''
REQUIREMENTS = [l for l in load('requirements.txt').split('\n') if l.strip() and not l.strip().startswith('#')]
VERSION = '0.1.0'
setup(
name='cron-tools',
version=VERSION,
url='https://github.com/cope-systems/cron-tools',
description='Tools for enhancing cron jobs and similar activities.',
long_description=load("README.md"),
author='Robert Cope',
author_email='robert@copesystems.com',
license='apache',
platforms='any',
packages=["cron_tools"],
scripts=[],
entry_points={
'console_scripts': [
'ct-agent=cron_tools.agent.app:main',
'ct-agent-admin=cron_tools_agent.admin_main:main',
'ct-aggregator=cron_tools.aggregator.app:main',
'ct-wrapper=cron_tools.wrapper.main:main'
]
},
install_requires=REQUIREMENTS,
tests_require=REQUIREMENTS,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: POSIX',
'License :: OSI Approved :: Apache License',
'Topic :: System',
'Topic :: System :: Monitoring',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
include_package_data=True,
keywords="cron"
)