-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 800 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 800 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "Cython", "numpy", "scipy", "pandas"]
build-backend = "setuptools.build_meta"
[project]
name = "reactIDR"
version = "2.0.3"
description = "Implementation of the IDR (Irreproducible Discovery Rate) method for RNA reactivity data."
readme = "README.md"
authors = [
{name = "carushi", email = "1845273+carushi@users.noreply.github.com"}
]
license = {text = "GPL2"}
requires-python = ">=3.9"
dependencies = [
"numpy>=2.0.2",
"scipy>=1.13.1",
"matplotlib",
"pandas>=2.2.3"
]
[project.scripts]
reactIDR = "reactIDR.main:main"
[project.urls]
Homepage = "https://github.com/carushi/reactIDR"
Repository = "https://github.com/carushi/reactIDR"
[tool.setuptools]
packages = { find = { where = ["."] , include = ["reactIDR*"] } }