Skip to content

Commit

Permalink
Use poetry to manage package
Browse files Browse the repository at this point in the history
  • Loading branch information
ndaidong committed Aug 27, 2020
1 parent 789ae39 commit 232cfd6
Show file tree
Hide file tree
Showing 6 changed files with 430 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
@@ -1,13 +1,13 @@
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "nightly"
install:
- pip install -r requirements.txt
- python setup.py install
- pip install poetry
- poetry install
- poetry build
script:
- ./test.sh
- coveralls
6 changes: 2 additions & 4 deletions README.md
Expand Up @@ -183,10 +183,8 @@ save_item(dict(name='Alice'))
```bash
git clone https://github.com/ndaidong/bellapy.git
cd bellapy
python3 -m venv venv
source venv/bin/activate
(venv) pip install -r requirements.txt
(venv) ./test.sh
poetry install
./test.sh
```


Expand Down

0 comments on commit 232cfd6

Please sign in to comment.