aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup.py
diff options
context:
space:
mode:
authorJ08nY2019-11-28 19:35:33 +0100
committerJ08nY2019-11-28 19:35:33 +0100
commit878d95c4e4dadf882a205316a07bc0642f773256 (patch)
treee539512c2a5386d714b6c29735b6bd17d30b2ca6 /setup.py
parenta17c64b710688ac697427544eaaab4aae6188c3c (diff)
downloadpyecsca-codegen-878d95c4e4dadf882a205316a07bc0642f773256.tar.gz
pyecsca-codegen-878d95c4e4dadf882a205316a07bc0642f773256.tar.zst
pyecsca-codegen-878d95c4e4dadf882a205316a07bc0642f773256.zip
Split to builder and client.
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
+ """
)