-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
96 lines (89 loc) · 2.3 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
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = [
"setuptools >= 62.3.0",
"setuptools-scm",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[project]
name = 'ccbr_actions'
dynamic = ['version','readme']
description = "CCBR GitHub Actions"
authors = [
{name = "Kelly Sovacool", email = "[email protected]"},
{name = "Vishal Koparde", email = "[email protected]"},
]
maintainers = [
{name = "CCR Collaborative Bioinformatics Resource", email = "[email protected]"},
]
license = {file = "LICENSE"}
classifiers = [
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT license",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.10"
dependencies = [
"ccbr_tools@git+https://github.com/CCBR/[email protected]",
"Click >= 8.1.3",
"cffconvert>=2.0.0",
"mkdocs",
"mike",
"pre-commit",
"pyyaml",
"requests"
]
[project.optional-dependencies]
dev = [
"black >= 23.10.0",
"jupyter",
"pyyaml"
]
test = [
"pytest",
"pytest-cov"
]
docs = [
"quartodoc >= v0.7.6"
]
[project.scripts]
ccbr_actions = "ccbr_actions.__main__:main"
[project.urls]
Repository = "https://github.com/CCBR/actions"
[tool.numpydoc_validation]
checks = [
"all", # report on all checks, except the below
"EX01",
"SA01",
"ES01",
]
# remember to use single quotes for regex in TOML
exclude = [ # don't report on objects that match any of these regex
'\.undocumented_method$',
'\.__repr__$',
]
override_SS05 = [ # override SS05 to allow docstrings starting with these words
'^Process ',
'^Assess ',
'^Access ',
]
[tool.setuptools.package-data]
"*" = ["LICENSE", "CHANGELOG.md", "lib/**", "examples/**"]
"ccbr_actions.data" = ["src/ccbr_actions/data/*"]
[tool.setuptools.dynamic]
version = {file = "src/ccbr_actions/VERSION"}
readme = {file = "README.md"}
[tool.setuptools]
script-files = [
"scripts/prepare_docker_build_variables.sh",
"scripts/print_versions.py",
"scripts/quarto-listings.py"
]