-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (46 loc) · 1.11 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
"""
ARXControl
----------
Package used to control the LoFASM ARX.
Links
`````
* `development version
<http://github.com/arcc/ARXControl/>`_
"""
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup
setup(
name='ARXControl',
version='0.2',
url='http://github.com/arcc/ARXControl',
#license='BSD',
author='Anthony J. Ford',
author_email='[email protected]',
description='LoFASM ARX control library',
long_description=__doc__,
packages=[
'ARXControl',
],
test_suite='nose.collector',
zip_safe=False,
platforms='any',
install_requires=[
'pyserial',
],
tests_require=[
'nose',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)