-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.25 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ibex_device_generator"
version = "1.0.3"
authors = [
{ name="Zsolt Kebel", email="[email protected]" },
]
description = "Easily generate starter code to develop an IOC in the IBEX instrument control system."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
# How mature is this project?
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"GitPython >= 3.1.43",
"lxml >= 5.2.1",
"Requests >= 2.32.3",
"rich >= 13.7.1",
"ruff >= 0.4.6",
]
[project.urls]
Homepage = "https://github.com/ISISComputingGroup/IBEX-device-generator"
Issues = "https://github.com/ISISComputingGroup/IBEX-device-generator/issues"
# This script will enable user to call ibex_device_generator from command line as a command
[project.scripts]
ibex_device_generator = "ibex_device_generator.cli:main"
# Add src to pythonpath so imports work in test files.
[tool.pytest.ini_options]
pythonpath = [
"src"
]