Use poetry for dependency management
This commit is contained in:
parent
4f642c502d
commit
d656c32abe
|
@ -0,0 +1 @@
|
||||||
|
Notes.org
|
|
@ -0,0 +1,5 @@
|
||||||
|
{ pkgs ? import <nixpkgs> { } }:
|
||||||
|
|
||||||
|
with pkgs;
|
||||||
|
|
||||||
|
poetry2nix.mkPoetryApplication { projectDir = ./.; }
|
|
@ -0,0 +1,20 @@
|
||||||
|
[tool.poetry]
|
||||||
|
name = "p3"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = ""
|
||||||
|
authors = ["coolneng <akasroua@gmail.com>"]
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "^3.8"
|
||||||
|
scikit-learn = "^0.24.0"
|
||||||
|
pandas = "^1.2.0"
|
||||||
|
imbalanced-learn = "^0.7.0"
|
||||||
|
|
||||||
|
[tool.poetry.dev-dependencies]
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core>=1.0.0"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
|
[tool.poetry.scripts]
|
||||||
|
competition = "processing:main"
|
Loading…
Reference in New Issue