forked from ekarademir/thorlabs-kinesis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
68 lines (59 loc) · 2.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# -*- coding: utf-8 -*-
#
# Copyright © Thorlabs-Kinesis Project Contributors
# Licensed under the terms of the GNU GPLv3+ License
# (see thorlabs_kinesis/__init__.py for details)
"""
Thorlabs-Kinesis
================
Python bindings for Thorlabs Kinesis DLLs.
"""
import io
import sys
import setuptools
import thorlabs_kinesis as thk
# ==============================================================================
# Constants
# ==============================================================================
NAME = "thorlabs-kinesis"
LIBNAME = "thorlabs_kinesis"
# ==============================================================================
# Use README for long description
# ==============================================================================
with io.open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
# ==============================================================================
# Setup arguments
# ==============================================================================
setup_args = dict(
name=NAME,
version=thk.__version__,
author="Ertugrul Karademir",
author_email="[email protected]",
maintainer="Sequoia Ploeg",
maintainer_email="[email protected]",
url="https://github.com/BYUCamachoLab/thorlabs-kinesis",
description="Python bindings to Thorlabs Kinesis API.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
# download_url=__website_url__ + "",
license="GPLv3+",
keywords="laboratory instrumentation hardware science motion control ThorLabs",
platforms=["Windows",],
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.6",
)
setuptools.setup(**setup_args)