-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
58 lines (51 loc) · 1.79 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import re
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read_file(filename, encoding='utf8'):
"""Read unicode from given file."""
with codecs.open(filename, encoding=encoding) as fd:
return fd.read()
# read version number from the script
here = os.path.abspath(os.path.dirname(__file__))
script_path = os.path.join(here, 'certsrv.py')
version = dict(re.findall(r"""__([a-z]+)__ = "([^"]+)""", read_file(script_path)))['version']
readme = read_file(os.path.join(here, 'README.rst'))
setup(
name='certsrv',
description='A Python client for the Microsoft AD Certificate Services web page',
long_description=readme,
author='Magnus Watn',
license='MIT',
url='https://github.com/magnuswatn/certsrv',
keywords='ad adcs certsrv pki certificate',
version=version,
py_modules=['certsrv'],
install_requires=[
'requests',
],
extras_require={
'ntlm': ['requests_ntlm'],
},
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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Systems Administration',
],
)