-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
86 lines (76 loc) · 2.11 KB
/
pyproject.toml
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
[build-system]
requires = [
"pydm",
"requests",
"setuptools_scm[toml]>=8",
"setuptools>=64.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "PvMail"
description = "Watch an EPICS PV. Send email when it changes from 0 to 1."
authors = [
{ name="Pete Jemian", email="[email protected]" },
{ name="Kurt Goetze", email="[email protected]" },
]
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["EPICS", "PV", "email", "monitor"]
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/?highlight=license
license = {file = "src/PvMail/LICENSE"}
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Freely Distributable",
"License :: Public Domain",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
# qt ==5
# pyqt ==5
dependencies = [
"pydm",
"pyepics",
]
[project.scripts]
pvMail = "PvMail.cli:main"
pvMail_mail_test = "PvMail.mailer:main"
pvMail_mail_config_file = "PvMail.ini_config:main"
[project.urls]
"Homepage" = "https://BCDA-APS.github.io/pvmail/"
"Source" = "https://github.com/BCDA-APS/pvmail"
"Bug Tracker" = "https://github.com/BCDA-APS/pvmail/issues"
[tool.black]
line_length = 88
[tool.copyright]
copyright = "(c) 2009-2024, UChicago Argonne, LLC. See LICENSE file."
[tool.coverage.run]
concurrency = [
"thread",
"multiprocessing"
]
omit = [
# omit anything under the installed packages directory
"*/site-packages/*",
# omit these individual files
]
relative_files = true
[tool.flake8]
max-line-length = 88
extend-ignore = ["E501"]
[tool.isort]
force_single_line = true
# multi_line_output = 1
line_length = 88
include_trailing_comma = true
[tool.setuptools_scm]