mirror of
https://github.com/laurivosandi/certidude
synced 2024-11-04 20:38:12 +00:00
Lauri Võsandi
811e6dbb08
* Switch to Python 2.x due to lack of decent LDAP support in Python 3.x * Add LDAP backend for authentication/authorization * Add PAM backend for authentication * Add getent backend for authorization * Add preliminary CSRF protection * Update icons * Update push server documentation, use nchan from now on * Add P12 bundle generation * Add thin wrapper around Python's SQL connectors * Enable mailing subsystem * Add Kerberos TGT renewal cronjob * Add HTTPS server setup commands for nginx
55 lines
1.5 KiB
Python
55 lines
1.5 KiB
Python
#!/usr/bin/env python3
|
|
# coding: utf-8
|
|
import os
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name = "certidude",
|
|
version = "0.1.20",
|
|
author = u"Lauri Võsandi",
|
|
author_email = "lauri.vosandi@gmail.com",
|
|
description = "Certidude is a novel X.509 Certificate Authority management tool aiming to support PKCS#11 and in far future WebCrypto.",
|
|
license = "MIT",
|
|
keywords = "falcon http jinja2 x509 pkcs11 webcrypto",
|
|
url = "http://github.com/laurivosandi/certidude",
|
|
packages=[
|
|
"certidude",
|
|
"certidude.api"
|
|
],
|
|
long_description=open("README.rst").read(),
|
|
install_requires=[
|
|
"setproctitle",
|
|
"click",
|
|
"falcon",
|
|
"jinja2",
|
|
"pyopenssl",
|
|
"pycountry",
|
|
"humanize",
|
|
"pycrypto",
|
|
"cryptography",
|
|
"markupsafe",
|
|
"ldap3",
|
|
"pykerberos",
|
|
],
|
|
scripts=[
|
|
"misc/certidude"
|
|
],
|
|
include_package_data = True,
|
|
package_data={
|
|
"certidude": ["certidude/templates/*"],
|
|
},
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: System Administrators",
|
|
"License :: Freely Distributable",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Natural Language :: English",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
],
|
|
)
|
|
|