Update pyproject.toml
Browse files- pyproject.toml +13 -0
pyproject.toml
CHANGED
@@ -1,3 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
[build-system]
|
2 |
requires = ["setuptools>=40.8.0", "wheel", "python=3.7.14", "fastai=2.7.9", "fastcore=1.5.27"]
|
3 |
build-backend = "setuptools.build_meta:__legacy__"
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "python-template"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["Your Name <[email protected]>"]
|
6 |
+
|
7 |
+
[tool.poetry.dependencies]
|
8 |
+
python = ">=3.8.0,<3.9"
|
9 |
+
numpy = "^1.22.2"
|
10 |
+
urllib3 = "^1.26.12"
|
11 |
+
fastai = "^2.7.9"
|
12 |
+
fastbook = "^0.0.28"
|
13 |
+
|
14 |
[build-system]
|
15 |
requires = ["setuptools>=40.8.0", "wheel", "python=3.7.14", "fastai=2.7.9", "fastcore=1.5.27"]
|
16 |
build-backend = "setuptools.build_meta:__legacy__"
|