Skip to content

Commit a336698

Browse files
authored
Merge pull request #2 from NGO-Algorithm-Audit/rl/fix-pypi-build
Add required fields for pip package build
2 parents a4b3f66 + 4b00e26 commit a336698

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "python-synthpop"
7+
version = "0.0.1"
78
description = "Python implementation of the R package synthpop for generating synthetic data"
89
authors = [
910
{name = "Algorithm Audit"}
1011
]
12+
requires-python = ">=3.8"
13+
dependencies = [
14+
"numpy>=1.20.0",
15+
"pandas>=1.3.0",
16+
"scikit-learn>=1.0.0",
17+
]
18+
readme = "README.md"
19+
license = {file = "LICENSE"}
20+
21+
[project.optional-dependencies]
22+
dev = [
23+
"pytest>=7.0.0",
24+
]

0 commit comments

Comments
 (0)