-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matias Carrasco Kind
authored and
Matias Carrasco Kind
committed
Feb 21, 2015
1 parent
7eb030c
commit fd8b1de
Showing
5 changed files
with
93 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
v1.0.0, 2015-FEB-17 -- release | ||
v1.0.1, 2015-FEB-20 -- Fix a bug at exit after error | ||
-- Added a checker of DES_SERVICES files and prompt password | ||
-- Minor bugs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
import sys | ||
import os | ||
from numpy.distutils.core import setup, Extension | ||
try: | ||
from setuptools import setup | ||
except ImportError: | ||
from distutils.core import setup | ||
prjdir = os.path.dirname(__file__) | ||
|
||
def read(filename): | ||
|
@@ -12,7 +15,7 @@ def read(filename): | |
include_dirs = [] | ||
setup( | ||
name='easyaccess', | ||
version='1.0.0', | ||
version='1.0.1', | ||
author='Matias Carrasco Kind', | ||
author_email='[email protected]', | ||
scripts=['easyaccess'], | ||
|
@@ -21,5 +24,5 @@ def read(filename): | |
description='Easy Access to access DES DB', | ||
long_description=read('README.md'), | ||
url='https://github.com/mgckind/easyaccess', | ||
install_requires=['pandas','termcolor','pyfits','cx_Oracle'], | ||
install_requires=['pandas','termcolor','pyfits >= 3.3','cx_Oracle'], | ||
) |