forked from ap--/voltcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = [
"setuptools >= 68.1",
"wheel",
"setuptools_scm >= 8",
]
build-backend = "setuptools.build_meta"
[project]
name = "voltcraft"
license.file = "LICENSE.md"
description = "library for controlling Voltcraft PPS power supplies"
authors = [
{name = "Andreas Poehlmann", email = "andreas@poehlmann.io"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
requires-python = ">=3.8"
dependencies = ["pyserial"]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/ap--/voltcraft.git"
Download = "https://github.com/ap--/voltcraft"
Source = "https://github.com/ap--/voltcraft"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]
write_to = "voltcraft/_version.py"
version_scheme = "post-release"
[tool.mypy]
ignore_missing_imports = true
strict = true
python_version = "3.8"
[tool.black]
target-version = ["py38"]