From 7c3d261135f878ffa2fbafe23371d64b55ef22f9 Mon Sep 17 00:00:00 2001 From: Vitalis Salis Date: Sun, 4 Apr 2021 10:51:10 +0300 Subject: [PATCH] Rename to pycg-stitch --- README.md | 8 ++++---- setup.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bf46ae8..c50ae27 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ In this repository you can find the implementation of a stitcher for Python call graphs written in Python along with a benchmark to test its functionality. Contents: -* [pypi-stitch](pypi-stitch): The source code for the stitcher. +* [stitcher](stitcher): The source code for the stitcher. * [benchmark](benchmark): A minimal benchmark to test the stitcher's functionality. @@ -19,8 +19,8 @@ From the root directory, run: ## Usage ``` ->>> pypi-stitch --help -usage: pypi-stitch [-h] [-o OUTPUT] [call_graph ...] +>>> pycg-stitch --help +usage: pycg-stitch [-h] [-o OUTPUT] [call_graph ...] positional arguments: call_graph Paths to call graphs to be stitched together in JSON format @@ -59,7 +59,7 @@ In order to execute the benchmark: ``` >>> cd benchmark >>> ./generate.sh ->>> pypi-stitch call-graphs/* --output out.json +>>> pycg-stitch call-graphs/* --output out.json ``` The `out.json` file should contain the following output: diff --git a/setup.py b/setup.py index 3e10f76..a38a46a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ def setup_package(): setup( - name='pypi-stitch', + name='pycg-stitch', version='0.0.1', description='Stitcher for FASTEN Python call graphs', license='Apache Software License', @@ -10,7 +10,7 @@ def setup_package(): install_requires=[], entry_points = { 'console_scripts': [ - 'pypi-stitch=stitcher.__main__:main', + 'pycg-stitch=stitcher.__main__:main', ], }, classifiers=[