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
|
[build-system]
requires = ["setuptools>=45", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "epics/version.py"
version_scheme = "post-release"
[tool.setuptools.packages.find]
include = ["epics", "epics.autosave", "epics.compat", "epics.devices",
"epics.qt", "epics.wx", "epics.wx"]
[tool.pytest.ini_options]
addopts = "--cov=epics --cov-append --cov-report html"
[project]
name = "pyepics"
dynamic = ["version"]
# provides = ["epics"]
requires-python = ">=3.10"
description = "Epics Channel Access for Python"
readme = "README.rst"
authors = [{name="Matthew Newville", email="newville@cars.uchicago.edu"}]
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
]
keywords = ["epics"]
dependencies = ["numpy>=1.26", "pyparsing"]
[project.urls]
Homepage = "https://github.com/pyepics/pyepics/"
Documentation = "https://pyepics.github.io/pyepics/"
[project.optional-dependencies]
doc = ["Sphinx", "numpydoc"]
test = ["coverage", "pytest", "pytest-cov", "psutil; platform_system=='Linux'"]
all = ["pyepics[test, doc]"]
|