~tanner/+junk/check_filemaker

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robert J. Tanner
  • Date: 2012-09-03 03:00:52 UTC
  • Revision ID: tanner@real-time.com-20120903030052-l1g7xpjm5byd0dag
First iteration of setup.py and associated files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2012 Real Time Enterprises, Inc.
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License.
 
6
#
 
7
# This program is distributed in the hope that it will be useful,
 
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
# GNU General Public License for more details.
 
11
#
 
12
# You should have received a copy of the GNU General Public License
 
13
# along with this program; if not, write to the Free Software
 
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
#
 
16
from setuptools import setup, find_packages
 
17
import os
 
18
 
 
19
here = os.path.abspath(os.path.dirname(__file__))
 
20
README = open(os.path.join(here, 'README.txt')).read()
 
21
CHANGELOG = open(os.path.join(here, 'CHANGELOG.txt')).read()
 
22
version = open(os.path.join(here, 'version.txt')).read().strip()
 
23
 
 
24
 
 
25
setup(
 
26
    name='check_filemaker',
 
27
    version=file('version.txt').read().strip(),
 
28
    description='Nagios plugin for monitoring FileMaker',
 
29
    long_description=README + '\n\n' + CHANGELOG,
 
30
    classifiers=[
 
31
        'Development Status :: 4 - Beta',
 
32
        'Environment :: Plugins',
 
33
        'Intended Audience :: Developers',
 
34
        'Intended Audience :: System Administrators',
 
35
        'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
 
36
        'Operating System :: POSIX :: Linux',
 
37
        'Operating System :: POSIX',
 
38
        'Programming Language :: Python :: 2.6',
 
39
        'Programming Language :: Python :: 2.7',
 
40
        'Topic :: Software Development :: Libraries :: Python Modules',
 
41
        'Topic :: System :: Monitoring',
 
42
    ],
 
43
    keywords='Nagios plugin monitoring FileMaker',
 
44
    author='Bob Tanner',
 
45
    author_email='tanner@real-time.com',
 
46
    url='https://code.launchpad.net/~tanner/+junk/check_filemaker',
 
47
    download_url='http://pypi.python.org/pypi/check_filemaker',
 
48
    license='GPL',
 
49
    py_modules=['check_filemaker'],
 
50
    zip_safe=False,
 
51
    test_suite='check_filemaker.tests',
 
52
    install_requires='PyFileMaker',
 
53
)