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",
|
2016-03-29 19:19:55 +00:00
|
|
|
version = "0.1.21",
|
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",
|
2016-09-17 21:00:14 +00:00
|
|
|
keywords = "falcon http jinja2 x509 pkcs11 webcrypto kerberos ldap",
|
2015-07-12 19:22:10 +00:00
|
|
|
url = "http://github.com/laurivosandi/certidude",
|
|
|
|
packages=[
|
|
|
|
"certidude",
|
2016-01-01 23:06:30 +00:00
|
|
|
"certidude.api"
|
2015-07-12 19:22:10 +00:00
|
|
|
],
|
|
|
|
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",
|
2015-07-27 12:30:50 +00:00
|
|
|
"humanize",
|
2015-07-27 15:49:50 +00:00
|
|
|
"cryptography",
|
2015-08-16 14:21:42 +00:00
|
|
|
"markupsafe",
|
2015-07-12 19:22:10 +00:00
|
|
|
],
|
|
|
|
scripts=[
|
|
|
|
"misc/certidude"
|
|
|
|
],
|
|
|
|
include_package_data = True,
|
|
|
|
package_data={
|
2016-03-21 21:42:39 +00:00
|
|
|
"certidude": ["certidude/templates/*"],
|
2015-07-12 19:22:10 +00:00
|
|
|
},
|
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|