-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fqfa"
dynamic = ["version"]
description = "A lightweight Python library for handling FASTQ and FASTA files."
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.6"
authors = [
{ name = "Alan F Rubin", email = "alan.rubin@wehi.edu.au" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
'dataclasses; python_version < "3.7"',
]
[project.urls]
repository = "https://github.com/CountESS-Project/fqfa"
documentation = "https://fqfa.readthedocs.io/"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pre-commit",
"pytest",
"Flake8-pyproject",
"mypy",
]
[tool.black]
line-length = 120
[tool.flake8]
extend-ignore = ["E203", "E501"]
max-complexity = 10
[tool.hatch.version]
path = "src/fqfa/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/fqfa"]
[tool.hatch.build.targets.sdist]
exclude = [
"docs/",
".readthedocs.yaml",
".github/",
"paper.*",
]
[tool.setuptools.package-data]
"fqfa" = ["py.typed"]