-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (57 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=77", "setuptools-scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "bioconda-utils"
dynamic = ["version"]
description = "Utilities for building and managing conda packages"
readme = "README.md"
license = "MIT"
authors = [
{name = "Björn Grüning"},
{name = "Andreas Sjödin"},
{name = "Brad A. Chapman"},
{name = "Christopher H. Tomkins-Tinch"},
{name = "Jillian Rowe"},
{name = "Johannes Köster"},
{name = "Renan Valieris"},
{name = "Ryan Dale"},
{name = "The Bioconda Team"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
[project.scripts]
bioconda-utils = "bioconda_utils.cli:main"
[tool.setuptools]
packages = {find = {namespaces = true, exclude = ["test"]}}
include-package-data = true
[tool.setuptools_scm]
[tool.setuptools.package-data]
bioconda_utils = [
"bioconda_utils-requirements.txt",
"bioconda_utils-requirements-docs.txt",
"bioconda_utils-conda_build_config.yaml",
"config.schema.yaml",
"templates/*",
"templates/css/*",
"maintainers.yaml",
"involucro",
]
[tool.pytest.ini_options]
markers = [
"long_running_1: mark as long-running test (may be executed separately)",
"long_running_2: mark as long-running test (may be executed separately)",
"successive:",
"asyncio:",
]
python_files = ["test/test_*py"]
[tool.flake8]
max_line_length = 99
exclude = [".git", "__pycache__", "docs/source/conf.py"]
[tool.ty.src]
exclude = []