-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
44 lines (41 loc) · 1.38 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
#!/usr/bin/env python
NAME = 'thorlabs_apt'
AUTHOR = 'Tobias Gehring'
AUTHOR_EMAIL = '[email protected]'
LICENSE = 'GPLv2'
URL = 'https://github.com/qpit/thorlabs_apt'
DOWNLOAD_URL = 'https://github.com/qpit/thorlabs_apt/archive/v0.2.tar.gz'
DESCRIPTION = 'python wrapper for Thorlabs\' APT library'
LONG_DESCRIPTION = '''\
thorlabs_apt provides a wrapper for Thorlabs\' APT, a library to control different Thorlabs motors.
'''
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Hardware',
'Operating System :: Microsoft :: Windows'
]
PLATFORMS = ['Windows']
MAJOR = 0
MINOR = 2
ISRELEASED = False
VERSION = '%d.%d' % (MAJOR, MINOR)
if __name__=='__main__':
from setuptools import setup
setup(
name = NAME,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
license = LICENSE,
url = URL,
download_url = DOWNLOAD_URL,
version = VERSION,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
classifiers = CLASSIFIERS,
platforms = PLATFORMS,
packages = ['thorlabs_apt'])