Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Commit

Permalink
Updates install to use pip instead of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sr-gi committed Sep 30, 2020
1 parent 319418c commit 3e2cd78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ No matter the way you chose, once installed the executables for `teosd` and `teo

## Installing from source

`teos` can be installed from source by running:
`teos` can be installed from source by running (from `python-teos/`):

```
python setup.py install
pip install .
```

## Installing via PyPi

`teos` can be installed from PyPi bu running:

```
pip install teos
pip install python-teos
```


Expand Down
4 changes: 2 additions & 2 deletions contrib/client/INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Install

`teos-client` gets installed alongside `teos` as long as you set the development flag when installing `teos`:
`teos-client` gets installed alongside `teos` as long as you set the development flag when installing `teos` (from `python-teos/`):

```
DEV=1 python setup.py install
DEV=1 pip install .
```

You can also get a standalone client from pip:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
CONSOLE_SCRIPTS.append("teos-client=contrib.client.teos_client:run")

setuptools.setup(
name="teos",
name="python- teos",
version=__version__,
author="Talaia Labs",
author_email="[email protected]",
Expand Down

0 comments on commit 3e2cd78

Please sign in to comment.