-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (36 loc) · 1017 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "scanbot"
version = "4.5.1"
description = "Collection of automated STM and nc-AFM commands compatible with Nanonis V5 SPM Controller"
authors = ["Julian Ceddia <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = ["stm", "automation", "python", "scanning tunnelling microscopy", "sts", "scanbot"]
packages = [
{include = "scanbot/server"},
]
include = [
"scanbot/App/build/**/*",
"scanbot/App/public/**/*",
"scanbot/App/src/**/*",
"scanbot/Dev/**/*",
]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "<2"
matplotlib = "*"
scipy = "<1.14"
"opencv-python" = "<4.9.0.81"
zulip = "*"
panel = "*"
flask = "*"
flask-cors = "*"
pytest = "*"
nanonisTCP = ">1.1.1"
[tool.poetry.dev-dependencies]
pytest = "*" # Add other development dependencies as needed
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
scanbot = "scanbot.server:app_"