-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
42 lines (34 loc) · 1.17 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
[build-system]
requires = ["setuptools", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "InstrumentChecker" # REQUIRED, is the only field that cannot be marked as dynamic.
dynamic = ["version"]
description = "Instrument configuration checker."
readme = "README.md"
requires-python = ">=3.11"
license-files = ["LICENSE"]
authors = [
{name = "ISIS Experiment Controls", email = "ISISExperimentControls@stfc.ac.uk" }
]
maintainers = [
{name = "ISIS Experiment Controls", email = "ISISExperimentControls@stfc.ac.uk" }
]
dependencies = [
"genie_python",
"unittest-xml-reporting",
"parameterized",
"CaChannel@git+https://github.com/ISISComputingGroup/CaChannel",
"gitpython",
"mysql-connector-python < 9.6.0", # 9.6.0+ release is broken - missing wheels on pypi
]
[project.optional-dependencies]
dev = []
[tool.setuptools.packages.find]
include = ["tests", "utils"]
namespaces = false
[project.urls]
"Homepage" = "https://github.com/isiscomputinggroup/InstrumentChecker"
"Bug Reports" = "https://github.com/isiscomputinggroup/InstrumentChecker/issues"
"Source" = "https://github.com/isiscomputinggroup/InstrumentChecker"
[tool.setuptools_scm]