Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ai
autoca
Commits
0083d4b2
Commit
0083d4b2
authored
Mar 07, 2010
by
ale
Browse files
turned into a proper python package
parent
df32a5b0
Changes
6
Hide whitespace changes
Inline
Side-by-side
.htaccess
View file @
0083d4b2
RewriteEngine
on
RewriteEngine
on
RewriteBase
/
RewriteBase
/
RewriteRule
^(.*)$ autoca.
py
/$1 [L]
RewriteRule
^(.*)$ autoca.
fcgi
/$1 [L]
autoca.
py
→
autoca.
fcgi
View file @
0083d4b2
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# $Id$
# $Id$
import
os
import
os
import
certutil
from
autoca
import
certutil
from
OpenSSL
import
crypto
from
OpenSSL
import
crypto
from
bottle
import
route
,
run
,
request
,
response
,
abort
,
send_file
from
bottle
import
route
,
run
,
request
,
response
,
abort
,
send_file
...
...
autoca/__init__.py
0 → 100644
View file @
0083d4b2
certutil.py
→
autoca/
certutil.py
View file @
0083d4b2
File moved
newcert.py
→
autoca/
newcert.py
View file @
0083d4b2
File moved
setup.py
0 → 100755
View file @
0083d4b2
#!/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"
,
],
},
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment