forked from magnuswatn/certsrv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 905 Bytes
/
setup.py
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='certsrv',
description='A Python client for the Microsoft AD Certificate Services web page',
author='Magnus Watn',
license='MIT',
url='https://github.com/magnuswatn/certsrv',
keywords='ad adcs certsrv pki certificate',
version='1.5.0',
py_modules=['certsrv'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Systems Administration',
],
)