-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
32 lines (28 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "cython", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pyrle"
version = "0.0.40"
description = "Numeric run length encoding for Python."
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 = ["run-lengths", "Rle", "genomics"]
dependencies = ["pandas", "tabulate", "numpy", "natsort"]
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[tool.setuptools.packages.find]
where = ["."]
[project.urls]
Homepage="http://github.com/pyranges/pyrle"