Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*.pyc
*~
.coverage
tests/tmp.db
10 changes: 2 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,10 @@ python:
- 2.7
- 3.3
- 3.4
- 3.5
install:
- pip install git+https://github.com/chfw/pyexcel-io.git
- pip install git+https://github.com/chfw/pyexcel.git
- pip install git+https://github.com/chfw/pyexcel-webio.git
- pip install git+https://github.com/chfw/pyexcel-xls.git
- pip install git+https://github.com/chfw/pyexcel-xlsx.git
- pip install git+https://github.com/T0ha/ezodf.git
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install weakrefset; fi
- pip install git+https://github.com/chfw/pyexcel-ods3.git
- pip install -r tests/requirements.txt --use-mirrors
- pip install -r tests/requirements.txt
script:
make test
after_success:
Expand Down
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
'pyexcel-webio>=0.0.3',
'Flask>=0.10.1'
]
extras = {
'xls': ['pyexcel-xls>=0.0.7'],
'xlsx': ['pyexcel-xlsx>=0.0.7'],
'ods3': [
'pyexcel-ods3>=0.0.8',
'https://github.com/T0ha/ezodf/archive/2c69103e6c0715adb0e36562cb2e6325fd776112.zip',
],
}

setup(
name='Flask-Excel',
Expand All @@ -22,6 +30,7 @@
url="https://github.com/chfw/Flask-Excel",
description='A flask extension that provides one application programming interface to read and write data in different excel file formats',
install_requires=dependencies,
extras_require=extras,
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
long_description=README_txt,
Expand Down
9 changes: 7 additions & 2 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ rednose
nose-cov
python-coveralls
coverage
pyexcel-xls
pyexcel-xlsx
pyexcel>=0.1.7
pyexcel-io>=0.0.8
pyexcel-ods3>=0.0.8
pyexcel-webio>=0.0.3
pyexcel-xls>=0.0.7
pyexcel-xlsx>=0.0.7
https://github.com/T0ha/ezodf/archive/2c69103e6c0715adb0e36562cb2e6325fd776112.zip
lxml