-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (36 loc) · 1.27 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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "singlem"
description = "Novelty-inclusive microbial community profiling of shotgun metagenomes"
readme = "README.md"
requires-python = ">=3.7"
license = "GPL-3.0-or-later"
authors = [{ name = "Ben Woodcroft" }]
keywords = ["metagenomics", "bioinformatics"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3"
]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/wwood/SingleM"
[project.scripts]
singlem = "singlem.main:main"
lyrebird = "singlem.lyrebird:main"
[tool.setuptools]
packages = ["singlem", "singlem.biolib_lite"]
include-package-data = true
[tool.setuptools.dynamic]
dependencies = { file = ["admin/requirements.txt"] }
[tool.setuptools_scm]
version_file = "singlem/version.py"
# Otherwise the push to pypi will fail on GitHub actions, because the version is malformed.
version_scheme = "only-version"
local_scheme = "no-local-version"
[tool.uv.sources]
# Use local editable install instead of PyPI, avoiding strict pins from published package
singlem = { workspace = true }