-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 712 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 712 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
from setuptools import setup, find_packages
setup(
name="x509dostool",
version="1.0.2",
author="Bing Shi",
author_email="roadicing@gmail.com",
description="A tool for crafting certificates and detecting bugs in implementations related to certificates.",
license="MIT",
packages=find_packages(),
install_requires=[
"psutil==6.0.0",
"pyasn1==0.6.0",
"pyasn1_modules==0.4.0",
"pycryptodome==3.20.0"
],
entry_points={
"console_scripts": [
"x509dostool=x509dostool.tool:main",
],
},
python_requires=">=3.10",
include_package_data=True,
package_data={
"x509dostool": ["config.json"]
},
)