forked from hgomersall/pyZaber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 895 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 2013 Knowledge Economy Developments Ltd
#
# Henry Gomersall
#
from distutils.core import setup
from distutils.util import get_platform
version = '0.1'
setup_args = {
'name': 'pyZaber',
'version': version,
'author': 'Henry Gomersall',
'author_email': '[email protected]',
'description': 'A python interface to the zaber linear slides',
'classifiers': [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
'packages':['pyzaber'],
}
if __name__ == '__main__':
setup(**setup_args)