-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 876 Bytes
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "yaqc_cmds"
dist-name = "yaqc-cmds"
author = "Blaise Thompson"
author-email = "blaise@untzag.com"
home-page = "https://github.com/wright-group/yaqc-cmds"
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.7"
requires = ["appdirs",
"attune",
"click",
"numexpr",
"pyqtgraph",
"pyside2",
"pyserial",
"qtpy",
"slackclient<2",
"slacker",
"sympy",
"toml",
"wrighttools",
"yaqc",
]
[tool.flit.scripts]
yaqc-cmds = "yaqc_cmds.__main__:main"
[tool.black]
line-length = 99
target-version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
'''