-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·74 lines (68 loc) · 2.47 KB
/
setup.py
File metadata and controls
executable file
·74 lines (68 loc) · 2.47 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
#
# Copyright (C) 2008 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.
#
from setuptools import setup
from crontab import __version__, __pkgname__
import os
# 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') as fhl:
description = fhl.read()
RELEASE = "1"
setup(
name = __pkgname__,
version = __version__,
release = RELEASE,
description = 'Python Crontab API',
long_description = description,
author = 'Martin Owens',
url = 'https://launchpad.net/python-crontab',
author_email = 'doctormo@gmail.com',
test_suite = 'tests',
platforms = 'linux',
license = 'LGPLv3',
py_modules = [ 'crontab', 'crontabs', 'cronlog' ],
provides = [ 'crontab', 'crontabs', 'cronlog' ],
install_requires = [ 'python-dateutil' ],
extras_require = { 'cron-schedule': ['croniter'] },
classifiers = [
'Development Status :: 5 - Production/Stable',
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: SunOS/Solaris',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
options = {
'bdist_rpm': {
'build_requires': [
'python',
'python-setuptools',
],
'release': RELEASE,
},
},
)