-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (40 loc) · 1.38 KB
/
setup.py
File metadata and controls
executable file
·44 lines (40 loc) · 1.38 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
#!/usr/bin/env python
#
# Setup prog for Certify certificate management utility
import sys
from distutils.core import setup
from certify import core
release_version=core.__version__
setup(
name="certify",
version=release_version,
description='Utilities for handing automated Grid host certificates.',
long_description='''Simple tools for automating grid host certificate application and renewal.''',
license='GPL',
author='John Hover, Jay Packard',
author_email='jhover@bnl.gov, jpackard@bnl.gov',
url='https://www.racf.bnl.gov/experiments/usatlas/griddev/',
packages=[ 'certify',
'certify.plugins'
],
classifiers=[
'Development Status :: 3 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GPL',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System Administration :: Management',
],
scripts=[ 'scripts/certify',
],
data_files=[ ('share/certify',
['README.txt',
'NOTES.txt',
'LGPL.txt',
]
),
('share/certify/config', ['config/certify.conf','config/hosts.conf']
),
]
)