aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 633382c..720892c 100644
--- a/setup.py
+++ b/setup.py
@@ -30,10 +30,16 @@ setup(
"matplotlib",
"fastdtw",
"asn1crypto",
- "jinja2"
+ "jinja2",
+ "Click"
],
extras_require={
"typecheck": ["mypy"],
"test": ["nose2", "parameterized","green", "coverage"]
- }
+ },
+ entry_points="""
+ [console_scripts]
+ builder=pyecsca.codegen.builder:main
+ client=pyecsca.codegen.client:main
+ """
)