-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "absscpi"
dynamic = ["version"]
authors = [
{ name="Bloomy Controls, Inc." },
]
description = "SCPI driver for the Bloomy Controls Advanced Battery Simulator"
readme = "README.rst"
license.file = "LICENSE"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
[project.urls]
homepage = "https://github.com/BloomyControls/abs-scpi-driver-python"
source = "https://github.com/BloomyControls/abs-scpi-driver-python"
issues = "https://github.com/BloomyControls/abs-scpi-driver-python/issues"
documentation = "https://bloomycontrols.github.io/abs-scpi-driver-python"
[tool.hatch.version]
path = "absscpi/__init__.py"