-
Notifications
You must be signed in to change notification settings - Fork 93
/
setup.py
executable file
·45 lines (41 loc) · 1.69 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='endesive',
version=__import__('endesive').__version__,
description='Library for digital signing and verification of digital signatures in mail, PDF and XML documents.',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/m32/endesive',
author='Grzegorz Makarewicz',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Email',
'Topic :: Security :: Cryptography',
'Topic :: Office/Business',
'Topic :: Text Processing',
'Topic :: Multimedia :: Graphics',
],
keywords='cryptography pki x509 smime email pdf pkcs11 asn1 xades',
packages=find_packages(where=".", exclude=['examples', 'tests']),
package_dir={"": "."},
package_data={"": ["*.ttf"]},
platforms=["all"],
install_requires=['certvalidator', 'cryptography', 'asn1crypto', 'oscrypto', 'lxml', 'pykcs11', 'Pillow', 'pytz', 'requests','paramiko', 'attrs'],
test_suite="tests",
)