certidude/setup.py

55 lines
1.5 KiB
Python
Raw Normal View History

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-01-10 17:51:54 +00:00
version = "0.1.20",
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",
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",
"pycountry",
2015-07-27 12:30:50 +00:00
"humanize",
2015-07-27 15:49:50 +00:00
"pycrypto",
"cryptography",
"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/*"],
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",
],
)