-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (46 loc) · 1.45 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""LabRAD interface for python
LabRAD is a system for quickly and easily building distributed
instrument control and data analysis applications. pylabrad
provides a python interface to LabRAD.
"""
classifications = """\
Development Status :: 4 - Beta
Environment :: Console
Environment :: Web Environment
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License (GPL)
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering"""
from distutils.core import setup
doclines = __doc__.split('\n')
setup(
name = 'pylabrad',
version = '0.93.1',
author = 'Matthew Neeley',
author_email = 'maffoo@users.sourceforge.net',
license = 'http://www.gnu.org/licenses/gpl-2.0.html',
platforms = ['ANY'],
url = 'http://sourceforge.net/projects/pylabrad/',
download_url = '',
description = doclines[0],
long_description = '\n'.join(doclines[2:]),
classifiers = classifications.split('\n'),
requires = ['twisted (>=2.5)'],
provides = ['labrad'],
packages = [
'labrad',
'labrad.node',
'labrad.servers',
'labrad.test',
'labrad.util',
],
package_data = {
'labrad': ['LICENSE.txt'],
'labrad.node': ['*.ini'],
},
py_modules = [
'twisted.plugins.labrad_node',
],
scripts = ['labrad_postinstall.py'],
)