-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (38 loc) · 1.16 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 = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "nhqiseg"
dynamic = ["version"]
authors = [
{name = "Roberto J. Homs Puron", email = "[email protected]"},
]
description = "Python NHQ Iseg High Power Supplier extension"
requires-python = ">=3.8"
license = {text = "LGPL-3.0-or-later"}
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU LESSER GENERAL PUBLIC LICENSE v3',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
'Topic :: Communications',
'Topic :: Software Development :: Libraries',
]
dependencies = [
'pytango >=9.3.6',
'serialio >=2.4.1'
]
[project.urls]
"Homepage" = "https://github.com/ALBA-Synchrotron/NHQIseg"
[project.scripts]
NHQIseg = "nhqiseg.tango.server:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]
write_to = "nhqiseg/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov nhqiseg --verbose"