Skip to content

Commit 3384864

Browse files
PyPI requirements
1 parent 3fc197c commit 3384864

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,8 @@ This is where `fold` steps in, providing a robust framework to handle the unique
8383
<!-- GETTING STARTED -->
8484
## Installation
8585

86-
To get started with `fold`, you can clone the repository to your local machine. Ensure you have Git installed, then run the following command:
87-
8886
```sh
89-
$ git clone https://github.com/ActurialCapital/fold.git
87+
$ pip install python-fold
9088
```
9189

9290
<p align="right">(<a href="#readme-top">back to top</a>)</p>

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[tool.poetry]
2-
name = "fold"
2+
name = "python-fold"
33
version = "0.1.0"
44
description = "Time-series cross-validation on steroids. Multi-purpose. Fully compatible with scikit-learn."
55
authors = ["ActurialCapital"]
66
license = "0.1.0"
77
readme = "README.md"
8+
repository = "https://github.com/ActurialCapital/fold"
9+
packages = [ {include = "fold"} ]
810

911
[tool.poetry.dependencies]
1012
python = "^3.11"

requirements.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
dateparser==1.2.0 ; python_version >= "3.11" and python_version < "4.0"
2+
joblib==1.4.2 ; python_version >= "3.11" and python_version < "4.0"
3+
llvmlite==0.42.0 ; python_version >= "3.11" and python_version < "4.0"
4+
numba==0.59.1 ; python_version >= "3.11" and python_version < "4.0"
5+
numpy==1.26.4 ; python_version >= "3.11" and python_version < "4.0"
6+
pandas==2.2.2 ; python_version >= "3.11" and python_version < "4.0"
7+
python-dateutil==2.9.0.post0 ; python_version >= "3.11" and python_version < "4.0"
8+
pytz==2024.1 ; python_version >= "3.11" and python_version < "4.0"
9+
regex==2024.5.15 ; python_version >= "3.11" and python_version < "4.0"
10+
scikit-learn==1.5.0 ; python_version >= "3.11" and python_version < "4.0"
11+
scipy==1.13.1 ; python_version >= "3.11" and python_version < "4.0"
12+
six==1.16.0 ; python_version >= "3.11" and python_version < "4.0"
13+
threadpoolctl==3.5.0 ; python_version >= "3.11" and python_version < "4.0"
14+
tzdata==2024.1 ; python_version >= "3.11" and python_version < "4.0"
15+
tzlocal==5.2 ; python_version >= "3.11" and python_version < "4.0"

0 commit comments

Comments
 (0)