Skip to content

Commit 16e7b13

Browse files
committed
Updated setup.py for PyPI release
1 parent 568a774 commit 16e7b13

File tree

1 file changed

+22
-11
lines changed

1 file changed

+22
-11
lines changed

setup.py

+22-11
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,25 @@
33
except ImportError:
44
from distutils.core import setup
55

6-
config = {
7-
'description': 'A Python client for the Microsoft AD Certificate Services web page',
8-
'author': 'Magnus Watn',
9-
'url': 'https://github.com/magnuswatn/certsrv',
10-
'download_url': 'https://github.com/magnuswatn/certsrv',
11-
'version': '0.9',
12-
'py_modules': ['certsrv'],
13-
'name': 'certsrv'
14-
}
15-
16-
setup(**config)
6+
setup(
7+
name='certsrv',
8+
description='A Python client for the Microsoft AD Certificate Services web page',
9+
author='Magnus Watn',
10+
license='MIT',
11+
url='https://github.com/magnuswatn/certsrv',
12+
keywords='ad adcs certsrv pki certificate',
13+
version='1.0.0',
14+
py_modules=['certsrv'],
15+
classifiers=[
16+
'Development Status :: 4 - Beta',
17+
'Intended Audience :: System Administrators',
18+
'Intended Audience :: Developers',
19+
'License :: OSI Approved :: MIT License',
20+
'Operating System :: POSIX :: Linux',
21+
'Programming Language :: Python :: 2.7',
22+
'Topic :: Internet :: WWW/HTTP',
23+
'Topic :: Security',
24+
'Topic :: Software Development :: Libraries',
25+
'Topic :: System :: Systems Administration',
26+
],
27+
)

0 commit comments

Comments
 (0)