-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 1022 Bytes
/
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
name = "iosc"
dynamic = ["version"]
description = "Comtrade viewer"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "TI_Eugene", email = "ti.eugene@gmail.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Operating System :: OS Independent",
]
dependencies = [
"qcustomplot-pyqt5",
"chardet",
"numpy"
]
urls.Homepage = "https://github.com/tieugene/iosc.py"
urls.Source = "https://github.com/tieugene/iosc.py"
[project.scripts]
iosc = "iosc.mainwindow:main"
[tool.setuptools]
packages = ["iosc", "iosc.core", "iosc.sig", "iosc.sig.calc", "iosc.sig.pdfout", "iosc.sig.tools", "iosc.sig.widget"]
[tool.setuptools.dynamic]
version = {attr = "iosc.__version__"}
[tool.pep8]
max-line-length = "120"
[tool.flake8]
max-line-length = 120
[tool.pylint]
max-line-length = 120
disable = [
"W0511", # `to do` keywords
]