-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.17 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
[project]
name = "meer_tec"
description = "MeCom for Python"
authors = [
{ name = "Bastian Leykauf" },
{ email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
dependencies = ["pythoncrc>=0.10.0", "pyserial>=3.5"]
dynamic = ["version"]
[tool.setuptools_scm]
write_to = "meer_tec/_version.py"
[project.optional-dependencies]
dev = [
"black>=23.11.0",
"pre-commit>=2.20.0",
"flake8>=5.0.4",
"isort>=5.10.1",
"Flake8-pyproject>=1.1.0.post0",
"setuptools_scm>=6.2",
]
tests = ["mypy>=1.7.1", "pytest>=7.4.3", "types-pyserial>=3.5"]
[project.urls]
homepage = "https://github.com/bleykauf/meer_tec/"
repository = "https://github.com/bleykauf/meer_tec/"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
[tool.isort]
profile = "black"
[[tool.mypy.overrides]]
module = "PyCRC.CRCCCITT"
ignore_missing_imports = true