Skip to content
Snippets Groups Projects
Commit 0083d4b2 authored by ale's avatar ale
Browse files

turned into a proper python package

parent df32a5b0
No related branches found
No related tags found
No related merge requests found
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)$ autoca.py/$1 [L]
RewriteRule ^(.*)$ autoca.fcgi/$1 [L]
......@@ -4,7 +4,7 @@
# $Id$
import os
import certutil
from autoca import certutil
from OpenSSL import crypto
from bottle import route, run, request, response, abort, send_file
......
File moved
File moved
setup.py 0 → 100755
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = "autoca",
version = "0.1.1",
description = "Automated CA management.",
author = "Ale",
author_email = "ale@incal.net",
url = "http://code.autistici.org/p/autoca",
license = "MIT",
packages = find_packages(),
platforms = ["any"],
install_requires = ["python-openssl"],
zip_safe = True,
entry_points = {
"console_scripts": [
"autoca-newcert = autoca.newcert:main",
],
},
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment