Skip to content

Commit

Permalink
modifies package structure to be more in-line with the Poetry and the…
Browse files Browse the repository at this point in the history
… pyproject.toml guidelines
  • Loading branch information
trp07 committed Jan 26, 2019
1 parent 931951e commit ee2162c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 100 deletions.
28 changes: 17 additions & 11 deletions .travis.yml
@@ -1,13 +1,19 @@
sudo: false
language: python
python:
- "3.5"
- "3.6"
env:
global:
- PYTHONPATH="/home/travis/build/trp07/messages"
install:
- pip install .
- pip install pytest-cov pytest-mock coveralls
script: py.test --cov=messages
python: 3.6

cache: pip

before_install: pip install poetry coveralls
install: poetry install
script: pytest --cov=messages
after_success:
- coveralls
- coveralls

jobs:
include:
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: required
2 changes: 1 addition & 1 deletion CHANGES.md
Expand Up @@ -3,7 +3,7 @@ Change Log

Upcoming
--------
- Add Poetry as the package installer/manager
- Adds Poetry as the package installer/manager.
- Improved and more robust exception handling to handle events like login failure, incorrect profile names, etc. in a more graceful manner.
- Working to migrate documentation from the github wiki to readthedocs.

Expand Down
6 changes: 0 additions & 6 deletions MANIFEST.in

This file was deleted.

3 changes: 0 additions & 3 deletions requirements-dev.txt

This file was deleted.

5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

5 changes: 0 additions & 5 deletions setup.cfg

This file was deleted.

69 changes: 0 additions & 69 deletions setup.py

This file was deleted.

0 comments on commit ee2162c

Please sign in to comment.