Skip to content

Commit 9f110ed

Browse files
authored
Create pyproject.toml
1 parent c616114 commit 9f110ed

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[project]
2+
name = "titanic_ml"
3+
description = "titanic_ml example package"
4+
version = "0.1.0"
5+
authors = [
6+
{ name = "Niels Zeilemaker", email = "nielszeilemaker@godatadriven.com" }
7+
]
8+
dependencies = [
9+
"pyspark[ml]",
10+
"sklearn"
11+
]
12+
13+
[project.optional-dependencies]
14+
dev = [
15+
"tox",
16+
"pre-commit",
17+
"bump2version"
18+
]
19+
20+
[build-system]
21+
build-backend = "flit_core.buildapi"
22+
requires = ["flit_core >=3.2,<4"]

0 commit comments

Comments
 (0)