Skip to content

Commit 4ffd509

Browse files
committed
ready for 1.0.5 stable
1 parent de92690 commit 4ffd509

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ v1.0.2, 2015-MAR-18 -- Added DES Logo
1111
-- Added command to add comments to tables and columns (add_comment)
1212
-- Fix minor issues and improve formatting
1313
v1.0.3, 2015-MAR-18 -- Fix an installation bug
14-
v1.0.4, 2015-MAR-20 -- Added optional color in config file
14+
v1.0.5, 2015-MAR-20 -- version 1.0.4 was skipped to be in sync with pip
15+
-- Added optional color in config file
1516
-- Added quiet option for initialization
1617
-- command to open an online tutorial (online_tutorial)

easyaccess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
__author__ = 'Matias Carrasco Kind'
3-
__version__ = '1.0.4'
3+
__version__ = '1.0.5'
44
# TODO:
55
# add other formats in load tables from fits (like boolean or complex)
66
# clean up, comments

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
import os
33
try:
4-
from setuptools import setup
4+
from setuptools import setup, find_packages
55
except ImportError:
66
from distutils.core import setup
77
prjdir = os.path.dirname(__file__)
@@ -15,12 +15,12 @@ def read(filename):
1515
include_dirs = []
1616
setup(
1717
name='easyaccess',
18-
version='1.0.4',
18+
version='1.0.5',
1919
author='Matias Carrasco Kind',
2020
author_email='[email protected]',
2121
scripts=['easyaccess'],
22-
py_modules=['easyaccess','config','utils.des_logo'],
23-
packages=['utils'],
22+
py_modules=['easyaccess','config','eautils.des_logo'],
23+
packages=find_packages(),
2424
license='NCSA',
2525
description='Easy Access to access DES DB',
2626
long_description=read('README.md'),

0 commit comments

Comments
 (0)