Skip to content

Commit

Permalink
update version to 0.5, use setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
newville committed Mar 24, 2018
1 parent f7422bf commit 4062f57
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/usr/bin/env python

__version__ = '0.3'

#from . import file_utils
__version__ = '0.5'

from .station_config import StationConfig
from .spec_emulator import SpecScan
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#!/usr/bin/env python

from distutils.core import setup, setup_keywords
from setuptools import setup

deps = ('wx', 'epics', 'numpy', 'matplotlib')
deps = ('wx', 'epics', 'numpy', 'matplotlib', 'psycopg2')

setup(name = 'epicsscan',
version = '0.4',
version = '0.5',
author = 'Matthew Newville',
author_email = '[email protected]',
license = 'BSD',
description = 'Epics Step Scanning library and applications',
description = 'Epics Scanning library and applications',
package_dir = {'epicsscan': 'lib'},
packages = ['epicsscan', 'epicsscan.server', 'epicsscan.gui',
'epicsscan.detectors', 'epicsscan.xps'],
Expand Down

0 comments on commit 4062f57

Please sign in to comment.