Skip to content

Commit f0d6310

Browse files
author
Salmireles
committed
Setup dev environment
1 parent 3c77939 commit f0d6310

File tree

4 files changed

+217
-0
lines changed

4 files changed

+217
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ doc/_build
3636
*ENV
3737
.DS_store
3838
.idea
39+
40+
# Other
41+
.python-version

Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
install:
2+
@export PYENV_VERSION=3.8.10
3+
@pip install --upgrade pip
4+
@pip install poetry==1.1.12
5+
@poetry update
6+
@poetry shell

poetry.lock

+191
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[tool.poetry]
2+
name = "machine-learning-book"
3+
version = "0.1.0"
4+
description = "Developing machine learning and deep learning models with python"
5+
authors = ["Salmireles <[email protected]>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "==3.8.10"
9+
numpy = "1.21.2"
10+
matplotlib = "3.4.3"
11+
pandas = "1.3.2"
12+
13+
[tool.poetry.dev-dependencies]
14+
15+
[build-system]
16+
requires = ["poetry-core>=1.0.0"]
17+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)