forked from tangrambpm/pyx509
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 782 Bytes
/
setup.py
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
from distutils.core import setup
from setuptools import find_packages
setup(
name='pyx509_ph4',
version='0.2.2',
packages=find_packages(),
url='https://github.com/ph4r05/pyx509',
maintainer='ph4r05',
maintainer_email='ph4r05@gmail.com',
license=open('LICENSE.txt').read(),
description='Parse x509v3 certificates and PKCS7 signatures',
long_description=open('README.rst').read(),
install_requires=[
'pyasn1 >= 0.3.3',
'future',
'six',
],
entry_points={
'console_scripts': [
'x509_parse.py = pyx509.commands:print_certificate_info_cmd',
'pkcs7_parse.py = pyx509.commands:print_signature_info_cmd',
]
},
test_suite='pyx509.test',
zip_safe=False,
)