forked from pyepics/pyepics
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
89 lines (83 loc) · 2.66 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
80
81
82
83
84
85
86
87
88
89
[metadata]
name = pyepics
provides = epics
description = Epics Channel Access for Python
long_description =
Python Interface to the Epics Channel Access protocol of the
Epics control system. PyEpics provides 3 layers of access to
Channel Access (CA):
1. a light wrapping of the CA C library calls, using ctypes. This
provides a procedural CA library in which the user is expected
to manage Channel IDs. It is mostly provided as a foundation
upon which higher-level access is built.
2. PV() (Process Variable) objects, which represent the basic object
in CA, allowing one to keep a persistent connection to a remote
Process Variable.
3. A simple set of functions caget(), caput() and so on to mimic
the CA command-line tools and give the simplest access to CA.
In addition, the library includes convenience classes to define
Devices -- collections of PVs that might represent an Epics Record
or physical device (say, a camera, amplifier, or power supply), and
to help write GUIs for CA.
author = Matthew Newville
author_email = [email protected]
license = Epics Open License
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Operating System :: OS Independent
License :: Free for non-commercial use
License :: Freely Distributable
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
keywords = epics
project_urls =
Source = https://github.com/pyepics/pyepics/
Documentation = http://pyepics.github.io/pyepics/
Tracker = https://github.com/pyepics/pyepics/issues
[options]
python_requires = >=3.7
setup_requires = setuptools_scm
include_package_data = True
packages =
epics
epics.autosave
epics.compat
epics.clibs
epics.devices
epics.qt
epics.wx
epics.clibs.darwin64
epics.clibs.darwinarm64
epics.clibs.linux64
epics.clibs.linux32
epics.clibs.linuxarm
epics.clibs.win64
epics.clibs.win32
install_requires =
setuptools
numpy
pyparsing
importlib_resources; python_version<="3.8"
[options.extras_require]
doc =
Sphinx
numpydoc
test =
coverage
pytest
pytest-cov
psutil; platform_system=="Linux"
all =
%(test)s
%(doc)s
[tool:pytest]
addopts = --cov=epics --cov-append --cov-report html