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

6 years ago
  1. #! /usr/bin/env python3
  2. from setuptools import setup
  3. setup(
  4. name='ca_manager',
  5. version='0.3',
  6. description='shell interface for certification authority management',
  7. author='LILiK',
  8. url='https://github.com/LILiK-117bis/ca_manager',
  9. license='GPL3',
  10. packages=[
  11. 'ca_manager',
  12. 'ca_manager.models',
  13. ],
  14. install_requires=[
  15. 'fqdn',
  16. 'peewee<3',
  17. ],
  18. scripts=[
  19. 'bin/ca-server',
  20. 'bin/ca-shell',
  21. ],
  22. zip_safe=False
  23. )