-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (47 loc) · 1.76 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
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()
here = os.path.abspath(os.path.dirname(__file__))
module = read_file(os.path.join(here, "pkcs7csr.py"))
meta = dict(re.findall(r"""__([a-z]+)__ = "([^"]+)""", module))
readme = read_file(os.path.join(here, "README.rst"))
version = meta["version"]
setup(
name="pkcs7csr",
description='A Python module for creating Microsoft style "PKCS #7 renewal requests"',
long_description=readme,
author="Magnus Watn",
license="MIT",
url="https://github.com/magnuswatn/pkcs7csr",
keywords="ad adcs certsrv pki certificate csr iis renewal",
version=version,
py_modules=["pkcs7csr"],
install_requires=["pyasn1", "pyasn1-modules", "cryptography",],
classifiers=[
"Development Status :: 4 - Beta",
"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",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Systems Administration",
],
)