Skip to content

Commit

Permalink
Rename to pycg-stitch
Browse files Browse the repository at this point in the history
  • Loading branch information
vitsalis committed Apr 4, 2021
1 parent d02bc56 commit 7c3d261
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

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',
packages=find_packages(),
install_requires=[],
entry_points = {
'console_scripts': [
'pypi-stitch=stitcher.__main__:main',
'pycg-stitch=stitcher.__main__:main',
],
},
classifiers=[
Expand Down

0 comments on commit 7c3d261

Please sign in to comment.