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

Commit 3e2cd78

Browse files
committed
Updates install to use pip instead of setup.py
1 parent 319418c commit 3e2cd78

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

INSTALL.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ No matter the way you chose, once installed the executables for `teosd` and `teo
88

99
## Installing from source
1010

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

1313
```
14-
python setup.py install
14+
pip install .
1515
```
1616

1717
## Installing via PyPi
1818

1919
`teos` can be installed from PyPi bu running:
2020

2121
```
22-
pip install teos
22+
pip install python-teos
2323
```
2424

2525

contrib/client/INSTALL.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Install
22

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

55
```
6-
DEV=1 python setup.py install
6+
DEV=1 pip install .
77
```
88

99
You can also get a standalone client from pip:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
CONSOLE_SCRIPTS.append("teos-client=contrib.client.teos_client:run")
5454

5555
setuptools.setup(
56-
name="teos",
56+
name="python- teos",
5757
version=__version__,
5858
author="Talaia Labs",
5959
author_email="[email protected]",

0 commit comments

Comments
 (0)