-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (50 loc) · 1.51 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
#--------------------------- setuptools -----------------------------
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "labop_labware_ontology"
version = "0.0.1"
readme = "README.md"
license = {text = "MIT"}
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry'
]
#packages = [
# { include = "labop_labware_ontology" },
#]
# uncomment to enable commandline access of the module via its name
#[project.scripts]
#labop_labware_ontology = "labop_labware_ontology.__main__:main"
[tool.pytest.ini_options]
minversion = "6.0"
filterwarnings = "ignore::DeprecationWarning"
addopts = [
"-v",
#"-n=auto",
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.coverage.report]
exclude_lines = ["if __name__ == .__main__.:"]
skip_empty = true
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B101"]
# end setuptools