-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 843 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 843 Bytes
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
import setuptools
long_description="""
hololinked is a ZMQ-based RPC tool-kit with built-in HTTP support for instrument control/data acquisition
or controlling generic python objects. This repository is a list of examples.
"""
setuptools.setup(
name="hololinked-examples",
version="0.1.0",
author="Vignesh Vaidyanathan",
author_email="vignesh.vaidyanathan@hololinked.dev",
description="examples for hololinked, installed under folder name",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=[
'oceanoptics-spectrometer/oceanoptics_spectrometer',
'serial-utility/serial_utility'
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)