-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.cfg
More file actions
66 lines (59 loc) · 1.74 KB
/
Copy pathsetup.cfg
File metadata and controls
66 lines (59 loc) · 1.74 KB
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
[metadata]
name = softioc
description = Embed an EPICS IOC in a Python process
url = https://github.com/dls-controls/pythonSoftIOC
author = Michael Abbott
author_email = Michael.Abbott@diamond.ac.uk
license = Apache License 2.0
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = softioc
python_requires = >=3.6
[options.entry_points]
# Include a command line script
console_scripts =
pythonSoftIOC = softioc.__main__:main
[options.package_data]
softioc =
access.acf
device.dbd
devIocStats.dbd
iocStatsDb/*
[options.extras_require]
# Useful extras for use at DLS
useful =
cothread
scipy
aioca >=1.3
# Dev and docs dependencies
dev =
pytest-cov
pytest-flake8
sphinx-rtd-theme-github-versions
pytest-asyncio
aioca >=1.3
cothread; sys_platform != "win32"
p4p
[flake8]
max-line-length = 80
extend-ignore =
F401 F403 F405 # Allow from module import *
E251 # Allow call(param = value)
E301 E302 E303 E305 # Allow any number of blank lines
[tool:pytest]
# Run pytest with all our checkers, and don't spam us with massive tracebacks on error
# Don't do flake8 here as we need to separate it out for CI
addopts =
--tb=native -vv --doctest-modules --ignore=iocStats --ignore=epicscorelibs --ignore=docs
--cov=softioc --cov-report term --cov-report xml:cov.xml
[coverage:run]
# This is covered in the versiongit test suite so exclude it here
omit = */_version_git.py