-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
61 lines (56 loc) · 1.86 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
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",
],
package_data={"signify": ["*.pem", "py.typed"]},
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="ralph@ralphbroenink.net",
description="Module to generate and verify PE signatures",
long_description=long_description,
install_requires=[
"certvalidator>=0.11",
"asn1crypto>=1.3,<2",
"oscrypto>=1.1,<2",
"mscerts",
"typing_extensions>=4.6.0",
],
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security :: Cryptography",
"Topic :: System :: Software Distribution",
"Topic :: Utilities",
],
)