-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.47 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 1.47 KB
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
[build-system]
requires = ["hatchling>=1.9.0", "hatch-vcs", "toml"]
build-backend = "hatchling.build"
[project]
name = "atomize-py"
version = "0.3.2"
authors = [
{name = "Atomize Developers"}
]
description = "A modular software for working with scientific devices and combining them into unified multifunctional setup"
readme = "readme.md"
requires-python = ">=3.10"
keywords = ["automation", "measurement", "instrument control", "experimental script", "graph", "scientific instruments", "industrial instruments"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: Scientific/Engineering",
]
dependencies = ["numpy>=1.25", "pyvisa>=1.11", "pyvisa-py>=0.5", "pyqtgraph>=0.12", "PyQt6>=6.2", "platformdirs>=4.5", "h5py>=3.8"]
license-files = ["license.md"]
[project.scripts]
atomize = "atomize.main.main_window:main"
[project.urls]
Homepage = "https://github.com/Anatoly1010/Atomize"
Issues = "https://github.com/Anatoly1010/Atomize/issues"
Documentation = "https://github.com/Anatoly1010/Atomize/tree/master/atomize/documentation"
[project.optional-dependencies]
serial = ["pyserial>=3.5"]
modbus = ["minimalmodbus>=1.0"]
bots = ["pyTelegramBotAPI>=4.15"]
math = ["scipy>=1.15"]
test = ["pytest>=7"]
[tool.hatch.build.targets.wheel]
packages = ["atomize"]