-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
59 lines (56 loc) · 2.08 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of `cron-wrapper` utility released under the MIT license.
# See the LICENSE file for more information.
from setuptools import setup, find_packages
DESCRIPTION = ("A cron job wrapper to add some missing features (locks, "
"timeouts, random sleeps, env loading...")
LONG_DESCRIPTION = DESCRIPTION
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n')
if (line and not line.startswith('--'))
]
setup(
name='cron-wrapper',
version="0.1.2",
author="Fabien MARTY",
author_email="[email protected]",
url="https://github.com/metwork-framework/cron-wrapper",
packages=find_packages(),
license='MIT',
download_url='https://github.com/metwork-framework/cron-wrapper',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Communications',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
],
entry_points={
'console_scripts': [
'cronwrap = cronwrapper.cronwrap:main',
],
},
)