-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (32 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
33
34
35
36
37
38
39
[project]
name = "peaksql"
packages = ["peaksql", "peaksql/datasets"]
version = "0.0.4"
description = "TODO: add peaksq description"
author = [
"Maarten van der Sande <[email protected]>"]
license = "MIT"
url= "https://github.com/vanheeringen-lab/peaksql"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"]
install_requires = ["pyfaidx", "numba", "numpy", "pandas"]
python_requires = ">3.7"
[build-system]
requires = ["setuptools", "wheel", "toml"]
build-backend = "setuptools.build_meta"
[tool.coverage]
[tool.coverage.run]
omit = ["test"]
[tool.black]
[mypy]
ignore_missing_imports = true
# flake8 does not support pyproject.toml (yet?!)
# [flake8] ...