-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (75 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=65"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "Clemens Burgstaller", email = "[email protected]"},
{name = "Norbert Leder", email = "[email protected]"},
{name = "René Schwaiger", email = "[email protected]"},
{name = "Thomas Hirschbüchler", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
]
dependencies = [
"matplotlib>=3.5.1",
"numpy>=1.20",
"pandas>=1.3.5",
"tables>=3.10.1,<4",
"openpyxl",
"rich>=13.4.1",
]
description = """Auxiliary set of tools to work with measurement data produced \
by the ICOtronic system"""
keywords = [
"smart-tool",
"smh",
"stu",
"sth",
"tool-holder",
]
name = "icolyzer"
readme = "README.md"
requires-python = ">=3.10"
version = "1.8.0"
[project.optional-dependencies]
dev = [
"flake8",
"mypy",
"pylint>=3.0.2",
"toml",
]
test = [
"prysk[pytest-plugin]>=0.13.1",
"pytest",
]
[project.scripts]
icoanalyzer = "icolyzer.analyzer:main"
icoconverter = "icolyzer.converter:main"
icoplotter = "icolyzer.plotter:main"
[project.urls]
Source = "https://github.com/mytoolit/ICOlyzer/"
[tool.black]
line-length = 79
preview = true
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
# Use doctests
# Fail after first errors
# Ignore macOS metadata files
addopts = "--doctest-modules -x --ignore-glob='*._*.py'"
minversion = "6.0"
[tool.setuptools.packages.find]
include = ["icolyzer*"]
[tool.setuptools.package-data]
"icolyzer.iftlibrary.lib" = ["*.dll", "*.dylib","*.so"]
[tool.yapfignore]
# Ignore macOS metadata files
ignore_patterns = [ "*._*.py" ]