-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (24 loc) · 703 Bytes
/
setup.py
File metadata and controls
32 lines (24 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup for pkiutils.
"""
__author__ = 'Jan Dittberner'
from setuptools import setup, find_packages
with open('README.rst', 'r') as readme:
DESCRIPTION = readme.read()
DESCRIPTION += "\n"
with open('LICENSE', 'r') as license:
DESCRIPTION += license.read()
setup(
name='pkiutils',
description='a set of public key infrastructure utilities',
long_description=DESCRIPTION,
install_requires=['pycrypto', 'pyasn1', 'pyasn1_modules', 'netaddr'],
version=0.1,
author=__author__,
author_email='jan@dittberner.info',
url='https://github.com/jandd/python-pkiutils',
packages=find_packages(),
license='MIT',
)