forked from pyranges/ncls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "cython", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ncls"
version = "0.0.69"
description = "A fast interval tree-like implementation in C, wrapped for the Python ecosystem."
readme = "README.md"
authors = [{ name = "Endre Bakken Stovner", email = "[email protected]" }]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta", "Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Scientific/Engineering"
]
keywords = ["ncls", "interval-tree", "genomics"]
dependencies = ["numpy"]
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[tool.setuptools.packages.find]
where = ["."]
[tool.pytype]
inputs = ['ncls']
[project.urls]
Homepage="http://github.com/pyranges/ncls"