-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63e1ff4
commit da0038c
Showing
7 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Benedikt Moneke | ||
Benjamin Klebel-Knobloch | ||
Christoph Buchner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# pyleco | ||
Python implementation of the Laboratory Experiment COntrol (LECO) protocol | ||
Python reference implementation of the Laboratory Experiment COntrol (LECO) protocol (https://github.com/pymeasure/leco-protocol). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: pyleco | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- pyzmq=25.0.0 | ||
# Development dependencies below | ||
- pytest=7.2.0 | ||
- setuptools_scm # don't pin, to get newest features | ||
- sphinx=6.1.3 | ||
- sphinx_rtd_theme=1.0.0 | ||
# - pip # don't pin, to gain newest conda compatibility fixes | ||
# - pip: | ||
# - xxx |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[project] | ||
name = "pyleco" | ||
version = "0.0.1dev" | ||
authors = [ | ||
{ name="PyMeasure Developers" }, | ||
] | ||
description = "Python reference implementation of the Laboratory Experiment COntrol (LECO) protocol" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 1 - Planning", | ||
] | ||
|
||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"pyzmq", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
'pytest', | ||
'sphinx', | ||
'sphinx_rtd_theme', | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/pymeasure/pyleco" | ||
"Bug Tracker" = "https://github.com/pymeasure/pyleco/issues" | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0", "wheel", "setuptools_scm>=7.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
# write_to = "pyleco/_version.py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"""Barebones test, to be deleted later.""" | ||
|
||
def test_import(): | ||
import pyleco |