-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
77 lines (62 loc) · 1.64 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "pairtools"
dynamic = ['version',]
dependencies = [
'cython',
'numpy>=1.10',
'click>=6.6',
'scipy>=1.7.0',
'pandas>=1.3.4',
'pysam>=0.15.0',
'pyyaml',
'bioframe>=0.3.3',
]
requires-python = ">=3.9"
description = "CLI tools to process mapped Hi-C data"
authors = [
{name = "Open2C", email = "open.chromosome.collective@gmail.com"},
]
license = {text = "MIT License"}
keywords = ["genomics", "bioinformatics", "Hi-C", "contact", "chromosome"]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
test = [
'pytest',
'pytest-flake8',
'pytest-cov',
]
doc = [
'sphinx-click',
'ipython',
'nbsphinx',
'Sphinx>=7.0',
'sphinx_rtd_theme',
'docutils>0.16',
]
[project.urls]
Homepage = "https://github.com/open2c/pairtools"
Documentation = "https://pairtools.readthedocs.io/en/latest/"
Repository = "https://github.com/open2c/pairtools.git"
Issues = "https://github.com/open2c/pairtools/issues"
Changelog = "https://github.com/open2c/pairtools/blob/master/CHANGES.md"
[project.scripts]
pairtools = "pairtools.cli:cli"
[build-system]
requires = [
"setuptools",
"cython",
"numpy",
"pysam"]
build-backend = "setuptools.build_meta"