diff --git a/CHANGES.md b/CHANGES.md index f3dbf55..459f4c4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -15,6 +15,9 @@ - Dealing better with trailing white space #52 - Fix several minor issues: #37, #40 - configuration options at command line +- Improved python API +- Load big files +- Fix find_tables (to include owners) and describe_table (dat_type) commands diff --git a/MANIFEST.in b/MANIFEST.in index 45228f8..136c07c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,3 +3,5 @@ include *.md include easyaccess recursive-include doc *.* recursive-include data *.* +recursive-include tests *.* +recursive-include config *.* diff --git a/easyaccess/eautils/__init__.py b/easyaccess/eautils/__init__.py index c5eb0da..847905d 100644 --- a/easyaccess/eautils/__init__.py +++ b/easyaccess/eautils/__init__.py @@ -1 +1 @@ -__all__=["des_logo", "dircache", "dtypes", "fileio"] +__all__=["des_logo", "dircache", "dtypes", "fileio","fun_utils","import_utils"] diff --git a/easyaccess/version.py b/easyaccess/version.py index 98ec3b3..f8e51fb 100644 --- a/easyaccess/version.py +++ b/easyaccess/version.py @@ -17,7 +17,7 @@ def last_pip_version(): versions.sort() return versions[-1] -version_tag = (1, 2, 1, 'rc4') +version_tag = (1, 3, 0, 'rc0') __version__ = '.'.join(map(str, version_tag[:3])) if len(version_tag) > 3: diff --git a/setup.py b/setup.py index 9be6687..1a2bab3 100644 --- a/setup.py +++ b/setup.py @@ -20,12 +20,12 @@ def read(filename): author='Matias Carrasco Kind', author_email='mcarras2@illinois.edu', scripts=['bin/easyaccess'], - py_modules=['easyaccess','easyaccess.eautils', 'easyaccess.version'], + py_modules=['easyaccess','easyaccess.eautils', 'easyaccess.version','easyaccess.config_ea'], #packages=find_packages(), packages=['easyaccess','easyaccess.eautils'], license='LICENSE.txt', - description='Easy access to access DES DB. Command line interpreter client for DESDM', + description='Easy access to the DES DB. Enhance command line SQL interpreter client for DESDM', long_description=read('README.md'), url='https://github.com/mgckind/easyaccess', - install_requires=['pandas >= 0.14','termcolor','fitsio >= 0.9.6','cx_Oracle','future >= 0.15.0'], + install_requires=['pandas >= 0.14','termcolor','fitsio >= 0.9.6','cx_Oracle','future >= 0.15.0','requests'], )