-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.42 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
[tool.poetry]
name = "pybedlite"
version = "1.0.1-dev"
description = "Python classes for interfacing with bed intervals"
authors = [
"Nils Homer <[email protected]>",
"Tim Fennell <[email protected]>",
"John Didion <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/fulcrumgenomics/pybedlite"
repository = "https://github.com/fulcrumgenomics/pybedlite"
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"]
packages = [{ include = "pybedlite" }, { include = "cgranges" }]
[tool.poetry.dependencies]
python = "^3.8.0"
attrs = "^23.0.0"
sphinx = { version = "^7.0.0", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
mypy = "^1.5.0"
flake8 = "^5.0.0"
black = "^23.0.0"
isort = "^5.13.0"
pytest-cov = "^4.0.0"
[tool.poetry.extras]
docs = ["sphinx"]
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[build-system]
requires = ["poetry-core", "setuptools", "cython"]
build-backend = "poetry.core.masonry.api"