import read_ods in init and adapt test

This commit is contained in:
iuvbio 2019-01-28 22:58:19 +01:00
parent 024c3e8b4b
commit bdb5ab92e8
4 changed files with 7 additions and 3 deletions

5
.gitignore vendored
View File

@ -7,5 +7,8 @@
# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
# Build folder
# Build folder.
/build/
# PyCharm idea folder.
/.idea/

View File

@ -0,0 +1 @@
from .read_ods import read_ods

View File

@ -1,7 +1,7 @@
import os
import sys
from pandas_ods_reader.read_ods import read_ods
from pandas_ods_reader import read_ods
root = os.path.dirname(os.path.abspath(__file__))

View File

@ -9,7 +9,7 @@ setup(name="pandas_ods_reader",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
keywords='data io pandas ods',