Skip to content

Commit 4062f57

Browse files
committed
update version to 0.5, use setuptools
1 parent f7422bf commit 4062f57

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

lib/__init__.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/usr/bin/env python
22

3-
__version__ = '0.3'
4-
5-
#from . import file_utils
3+
__version__ = '0.5'
64

75
from .station_config import StationConfig
86
from .spec_emulator import SpecScan

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup, setup_keywords
3+
from setuptools import setup
44

5-
deps = ('wx', 'epics', 'numpy', 'matplotlib')
5+
deps = ('wx', 'epics', 'numpy', 'matplotlib', 'psycopg2')
66

77
setup(name = 'epicsscan',
8-
version = '0.4',
8+
version = '0.5',
99
author = 'Matthew Newville',
1010
author_email = '[email protected]',
1111
license = 'BSD',
12-
description = 'Epics Step Scanning library and applications',
12+
description = 'Epics Scanning library and applications',
1313
package_dir = {'epicsscan': 'lib'},
1414
packages = ['epicsscan', 'epicsscan.server', 'epicsscan.gui',
1515
'epicsscan.detectors', 'epicsscan.xps'],

0 commit comments

Comments
 (0)