2015-08-13 08:11:08 +00:00
|
|
|
#!/usr/bin/env python3
|
2015-07-12 19:22:10 +00:00
|
|
|
# coding: utf-8
|
|
|
|
import os
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = "certidude",
|
2015-10-19 14:19:32 +00:00
|
|
|
version = "0.1.18",
|
2015-07-12 19:22:10 +00:00
|
|
|
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",
|
|
|
|
],
|
|
|
|
long_description=open("README.rst").read(),
|
|
|
|
install_requires=[
|
2015-07-26 20:34:46 +00:00
|
|
|
"setproctitle",
|
2015-07-12 19:22:10 +00:00
|
|
|
"click",
|
|
|
|
"falcon",
|
2015-07-26 20:34:46 +00:00
|
|
|
"jinja2",
|
|
|
|
"pyopenssl",
|
|
|
|
"pycountry",
|
2015-07-27 12:30:50 +00:00
|
|
|
"humanize",
|
2015-07-27 15:49:50 +00:00
|
|
|
"pycrypto",
|
|
|
|
"cryptography",
|
2015-08-16 14:21:42 +00:00
|
|
|
"markupsafe",
|
2015-08-27 17:41:32 +00:00
|
|
|
"ldap3",
|
|
|
|
"pykerberos",
|
2015-07-12 19:22:10 +00:00
|
|
|
],
|
|
|
|
scripts=[
|
|
|
|
"misc/certidude"
|
|
|
|
],
|
|
|
|
include_package_data = True,
|
|
|
|
package_data={
|
|
|
|
"certidude": ["certidude/templates/*.html"],
|
|
|
|
},
|
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|