-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (40 loc) · 1.28 KB
/
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
41
42
43
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "Heron-42ad"
version = "0.8.3"
authors = [
{name = "George Dimitriadis", email = "gdimitri@hotmail.com"},
]
description = "Heron Node baed experiment designer"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["Node-based", "experiment"]
license = {text = "MIT License"}
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.11'
]
dependencies = ['pyzmq>=20.0',
'numpy',
'dearpygui >= 1.2',
'paramiko',
'opencv-python>=4.5',
'pandas',
'h5py',
'tornado',
'pynput',
'pyserial',
'psutil',
]
[project.scripts]
Heron = "Heron.gui.editor:run"
[project.urls]
Homepage = "https://github.com/Heron-Repositories/Heron/tree/main"
Documentation = "https://heron-42ad.readthedocs.io/en/latest/index.html"
Issues = "https://github.com/Heron-Repositories/Heron/issues"