Skip to content

Commit

Permalink
pre-relase 1.3.0-rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgckind committed May 2, 2016
1 parent 326c849 commit 019b287
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Expand Up @@ -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



Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Expand Up @@ -3,3 +3,5 @@ include *.md
include easyaccess
recursive-include doc *.*
recursive-include data *.*
recursive-include tests *.*
recursive-include config *.*
2 changes: 1 addition & 1 deletion easyaccess/eautils/__init__.py
@@ -1 +1 @@
__all__=["des_logo", "dircache", "dtypes", "fileio"]
__all__=["des_logo", "dircache", "dtypes", "fileio","fun_utils","import_utils"]
2 changes: 1 addition & 1 deletion easyaccess/version.py
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -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'],
)

0 comments on commit 019b287

Please sign in to comment.