-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 2.33 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 2.33 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
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=45", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "epicsapps/version.py"
version_scheme = "post-release"
[tool.setuptools.packages.find]
include = ["epicsapps", "epicsapps.areadetector",
"epicsapps.areadetector", "epicsapps.icons", "epicsapps.instruments",
"epicsapps.ionchamber", "epicsapps.ionchamber.iocApp",
"epicsapps.microscope", "epicsapps.pvlogger",
"epicsapps.stripchart", "epicsapps.utils"]
[project]
name = "epicsapps"
dynamic = ["version"]
requires-python = ">= 3.10"
description = "A collection of applications using PyEpics"
readme = "README.md"
authors = [
{name = "Matthew Newville", email = "newville@cars.uchicago.edu"}
]
license-files = ["LICENSE"]
keywords = ["epics", "experimental data acquistion"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"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",
]
dependencies = ['pyepics',
'sqlalchemy',
'psycopg2-binary',
'pyyaml',
'numpy',
'matplotlib',
'pytz',
'datetime',
'python-dateutil',
'wxpython>=4.2.1',
'wxmplot>=2026.1.0',
'wxutils>=2026.1.0',
'lmfit',
'pyshortcuts>=1.9.5',
'xraydb',
'tabulate',
'transformations',
'toml',
'tomli',
'opencv-python',
]
[project.scripts]
epicsapps = "epicsapps:run_epicsapps"
epics_adviewer = "epicsapps:run_adviewer"
epics_instruments = "epicsapps:run_instruments"
epics_stripchart = "epicsapps:run_stripchart"
[project.urls]
Homepage = " https://github.com/pyepics/epicsapps"
Documentation = "https://pyepics.github.io/epicsapps/"
Tracker = "https://github.com/pyepics/epicsapps/issues"
[project.optional-dependencies]
dev = ["build", "twine"]
doc = ["Sphinx", "sphinx-copybutton", "sphinxcontrib-video", "numpydoc"]
test = ["pytest", "pytest-cov", "coverage"]
all = ["epicsapps[dev, doc, test]"]