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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#!/usr/bin/env python
#
# Copyright (C) 2008-2025 Martin Owens
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3.0 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library.
#
# pylint: disable=bad-whitespace
"""Setup the crontab module"""
import os
from setuptools import setup
# remove MANIFEST. distutils doesn't properly update it when the
# contents of directories change.
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
# Grab description for Pypi
with open('README.rst') as fhl:
description = fhl.read()
# Used for rpm building
RELEASE = "1"
setup(
name = 'python-crontab',
version = '3.3.0',
release = RELEASE,
description = 'Python Crontab API',
long_description = description,
long_description_content_type = "text/x-rst",
author = 'Martin Owens',
url = 'https://gitlab.com/doctormo/python-crontab/',
author_email = 'doctormo@gmail.com',
test_suite = 'tests',
platforms = 'linux',
license = 'LGPLv3',
py_modules = ['crontab', 'crontabs', 'cronlog'],
provides = ['crontab', 'crontabs', 'cronlog'],
extras_require = {
'cron-schedule': ['croniter'],
'cron-description': ['cron-descriptor'],
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: SunOS/Solaris',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
options = {
'bdist_rpm': {
'build_requires': [
'python',
'python-setuptools',
],
'release': RELEASE,
},
},
)
|