summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: f5893e730d3ae7f7d6b0e226941454f36278777c (plain)
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
#!/usr/bin/python

import glob
from distutils.core import setup
from puppethost import version, __name__

setup(name='puppet-host-package',
      version=version,
      description='Tool to create host specific package(s) for puppet hosts',
      author='Todd Zullinger',
      author_email='tmz+puppet@pobox.com',
      url='http://pobox.com/~tmz/puppethost/',
      license='GPLv2+',
      py_modules=['puppethost'],
      scripts=['puppet-host-package'],
      data_files=[('share/%s' % __name__, ['template.spec'])],
      long_description="""\
This tool generates a package containing the SSL certificate and other needed
files for a given host or hosts.""",
      classifiers=[
            'Development Status :: 4 - Beta',
            'Environment :: Console',
            'Intended Audience :: System Administrators',
            'License :: OSI Approved :: GNU General Public License (GPL)',
            'Natural Language :: English',
            'Operating System :: POSIX',
            'Programming Language :: Python',
            'Topic :: System :: Systems Administration',
            ],
      )