-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
48 lines (40 loc) · 1.62 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
# -*- coding: latin-1 -*-
from setuptools import setup
from ThorlabsPM100 import __long_description__, __version__
doc_url = "http://pythonhosted.org/ThorlabsPM100"
long_description = __long_description__
long_description += r"""
Documentation
=============
**Detailed information** about the Thorlabs PM100 driver can be found on the
`main web site <http://pythonhosted.org/ThorlabsPM100>`_
**Source code** available on `github <https://github.com/clade/ThorlabsPM100>`_.
"""
setup(name="ThorlabsPM100",
version=__version__,
author=u'Pierre Cladé',
author_email="pierre.clade@spectro.jussieu.fr",
maintainer=u'Pierre Cladé',
maintainer_email="pierre.clade@spectro.jussieu.fr",
license='''\
This software can be used under one of the following two licenses: \
(1) The BSD license. \
(2) Any other license, as long as it is obtained from the original \
author.''',
description='Interface to the PM100A/D power meter from Thorlabs.',
long_description=long_description,
keywords=['Thorlabs', 'PM100', 'PM100A', 'PM100D'],
url=doc_url,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'],
packages=["ThorlabsPM100", ]
)