forked from ralphje/signify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (56 loc) · 2.02 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import glob
import os
from setuptools import setup
base_dir = os.path.dirname(__file__)
about = {}
with open(os.path.join(base_dir, "signify", "__init__.py")) as f:
exec(f.read(), about)
try:
long_description = open("README.rst", "r").read()
except Exception:
long_description = None
setup(
name='signify',
version=about['__version__'],
packages=['signify', 'signify.asn1', 'signify.authenticode', 'signify.pkcs7', 'signify.x509',
'signify.__pyinstaller'],
package_data={'signify': ['*.pem']},
include_package_data=True,
url='https://github.com/ralphje/signify',
download_url='https://github.com/ralphje/signify/tarball/v' + about['__version__'],
license='MIT',
author='Ralph Broenink',
author_email='[email protected]',
description='Module to generate and verify PE signatures',
long_description=long_description,
install_requires=['pyasn1>=0.4.0',
'certvalidator>=0.11',
'asn1crypto>=1.3,<2',
'oscrypto>=1.1,<2',
'pyasn1-modules>=0.2.8'],
extras_require={
"stlupdate": ["requests"],
},
keywords=['authenticode', 'authentihash', 'fingerprinter', 'pe'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Legal Industry',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Security :: Cryptography',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
],
entry_points={
'pyinstaller40': [
'hook-dirs = signify.__pyinstaller:get_hook_dirs'
]
}
)