Skip to content

Commit

Permalink
migrated to setuptools and makefile for handling development environm…
Browse files Browse the repository at this point in the history
…ents, updated readme for accessibility
  • Loading branch information
tbonza committed May 24, 2019
1 parent 8960c10 commit 8e53890
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 796 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ oenv
build
.eggs
*.egg-info
dist/
dist/
.Python
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: python
python:
- "3.6"
install:
- python setup.py install
- pip install pytest
install: "make"
script:
python setup.py test
make test
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
base:
python setup.py install
dev: base
pip install sphinx sphinx-rtd-theme pytest pytype
test: dev
py.test tests
docs: dev
python setup.py build_sphinx
package: test docs
python setup.py sdist
70 changes: 0 additions & 70 deletions Pipfile

This file was deleted.

Loading

0 comments on commit 8e53890

Please sign in to comment.