-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.65 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
[tool.poetry]
name = "fgpyo"
version = "0.1.1-dev"
description = "Python bioinformatics and genomics library"
authors = ["Nils Homer", "Tim Fennell", "Nathan Roach"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/fulcrumgenomics/fgpyo"
repository = "https://github.com/fulcrumgenomics/fgpyo"
keywords = ["bioinformatics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.7.0,<4.0"
attrs = ">=19.3.0"
typing_extensions = { version = ">=3.7.4", python = "<3.8" } # Literal support
typing_inspect = { version = ">=0.3.1", python = "<3.8" } # inspecting types
sphinx = {version = "4.3.1", optional = true}
sphinx_rtd_theme = {version = "^1.3.0", optional = true}
pysam = ">=0.22.0"
pytest = ">=7.4.0"
[tool.poetry.extras]
docs = ["sphinx", "sphinx_rtd_theme"]
[tool.poetry.dev-dependencies]
setuptools = ">=68.0.0"
pytest = ">=5.4.2"
mypy = [
{ version = ">=0.770", python = "<3.8" },
{ version = ">=1.7.0", python = ">=3.8"}
]
flake8 = [
{ version = ">=3.8.1", python = "<3.12.0" },
{ version = ">=6.1.0", python = ">=3.12.0" },
]
black = ">=19.10b0"
pytest-cov = ">=2.8.1"
isort = ">=5.10.1"
[build-system]
requires = ["poetry>=1.5"]
build-backend = "poetry.masonry.api"