File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed
Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -60,3 +60,6 @@ target/
6060
6161# Ipython Notebook
6262.ipynb_checkpoints
63+
64+ # Other things
65+ .DS_Store
Original file line number Diff line number Diff line change 1+ language : python
2+ python :
3+ - " 2.7"
4+ - " 3.3"
5+ - " 3.4"
6+ - " 3.5"
7+ - " pypy"
8+ # command to install dependencies
9+ install :
10+ - " pip install -e ."
11+ - " pip install pep8"
12+ # command to run tests
13+ script :
14+ # Tests
15+ - python test.py
16+ # pep8
17+ - pep8 --ignore=E501 .
18+ # Examples
19+ - (cd "Examples/Replicate Workbook" && python replicateWorkbook.py)
20+ - (cd "Examples/List TDS Info" && python listTDSInfo.py)
21+
Original file line number Diff line number Diff line change 1- __version__ = '0.0.1'
2- __VERSION__ = __version__
31from .connection import Connection
42from .datasource import Datasource , ConnectionParser
53from .workbook import Workbook
4+ __version__ = '0.0.1'
5+ __VERSION__ = __version__
You can’t perform that action at this time.
0 commit comments