import read_ods in init and adapt test
This commit is contained in:
parent
024c3e8b4b
commit
bdb5ab92e8
|
|
@ -7,5 +7,8 @@
|
||||||
# Python egg metadata, regenerated from source files by setuptools.
|
# Python egg metadata, regenerated from source files by setuptools.
|
||||||
/*.egg-info
|
/*.egg-info
|
||||||
|
|
||||||
# Build folder
|
# Build folder.
|
||||||
/build/
|
/build/
|
||||||
|
|
||||||
|
# PyCharm idea folder.
|
||||||
|
/.idea/
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
from .read_ods import read_ods
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
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__))
|
root = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -9,7 +9,7 @@ setup(name="pandas_ods_reader",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
],
|
],
|
||||||
keywords='data io pandas ods',
|
keywords='data io pandas ods',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue