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
|
[build-system]
requires = [
"setuptools >= 48",
"setuptools_scm[toml] >= 9, <10",
"setuptools_scm_git_archive",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[tool.setuptools_scm]
write_to = "screed/version.py"
git_describe_command = "git describe --dirty --tags --long --match v* --first-parent"
[project]
name = "screed"
description = "a Python library for loading FASTA and FASTQ sequences"
readme = "README.md"
license = "BSD-3-Clause"
license-files = [ "doc/LICENSE.rst" ]
requires-python = ">=3.11"
dynamic = [ "version" ]
authors = [
{ name = "Alex Nolley" },
{ name = "C. Titus Brown" },
]
maintainers = [
{ name = "C. Titus Brown", email = "titus@idyll.org" },
{ name = "Luiz Irber", email="luiz@sourmash.bio" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
"Homepage" = "https://github.com/dib-lab/screed"
"Documentation" = "https://screed.readthedocs.io/"
"Source" = "https://github.com/dib-lab/screed"
"Tracker" = "https://github.com/dib-lab/screed/issues"
"CI" = "https://github.com/dib-lab/screed/actions"
[project.scripts]
"screed" = "screed.__main__:main"
[project.optional-dependencies]
test = [
"pytest >= 6.2.2",
"pycodestyle",
"pytest-cov",
]
all = ["screed[test]"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["screed*"]
exclude = ["screed.tests*"]
|