-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
79 lines (70 loc) · 1.8 KB
/
setup.cfg
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
[metadata]
name = pmacfiltercontrol
description = EPICS IOC and system test framework for pmacFilterControl
url = https//github.com/dls-control/pmacFilterControl
author = Oliver Copping
author_email = [email protected]
license = Apache License 2.0
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.10
[options]
packages = find:
package_dir =
=src
install_requires =
importlib_metadata
aioca
h5py
softioc>=4.2.0
aiozmq
typer>=0.7.0 # Fix incompatibility with click>=8.1.0 | https://github.com/tiangolo/typer/issues/377
[options.extras_require]
# For development tests/docs
dev =
black
flake8
mypy
pytest-asyncio
sphinx-autobuild
sphinx-external-toc
myst-parser
breathe
pydata-sphinx-theme>=0.13.0
sphinx-design
pre-commit
isort >5.0
[options.packages.find]
where = src
# Don't include our tests directory in the distribution
exclude = tests
[options.entry_points]
# Include a command line script
console_scripts =
pmac_filter_control_ioc = softioc.__main__:main
event_subscriber = pmacfiltercontrol.event_subscriber:main
detector_sim = pmacfiltercontrol.detector_sim:main
[mypy]
# Ignore missing stubs for modules we use
ignore_missing_imports = True
[isort]
profile=black
float_to_top=true
skip=setup.py,conf.py,build
[flake8]
max-line-length = 88
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
# support typing.overload decorator
F811,
# allow Annotated[typ, some_func("some string")]
F722,
[coverage:paths]
# Tests are run from installed location, map back to the src directory
source =
./
**/site-packages/