Easy CA management
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

25 lines
502 B

#! /usr/bin/env python3
from setuptools import setup
setup(
name='ca_manager',
version='0.3',
description='shell interface for certification authority management',
author='LILiK',
url='https://github.com/LILiK-117bis/ca_manager',
license='GPL3',
packages=[
'ca_manager',
'ca_manager.models',
],
install_requires=[
'fqdn',
'peewee<3',
],
scripts=[
'bin/ca-server',
'bin/ca-shell',
],
zip_safe=False
)