-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (27 loc) · 1.05 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
[tool.poetry]
name = "KnockoffOrigins"
version = "v0.1.4"
description = "This repository is dedicated to implementing the methodologies from the 2015 paper \"False Discovery Rate via Knockoffs\". It provides code for generating knockoff features and applying selection procedures. The aim is to help users understand and apply the knockoff method for feature selection. Please refer to the original paper for a complete understanding."
authors = ["Javad Razi <[email protected]>", "Mohammad Jamal Asadi <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jrazi/KnockoffOrigins"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
scipy = "^1.13.0"
statsmodels = "^0.14.2"
pandas = "^2.2.2"
matplotlib = "^3.8.4"
seaborn = "^0.13.2"
scikit-learn = "^1.4.2"
[tool.poetry.dev-dependencies]
pytest = "^8.1.1"
pep8 = "^1.7.1"
black = "^24.4.2"
isort = "^5.13.2"
pylint = "^3.1.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"