-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (29 loc) · 1.08 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "synthDataGen"
version = "0.4"
authors = [
{ name="Santiago Fernández Prieto", email="[email protected]" },
{ name="German Navarro", email="[email protected]" },
{ name="David Aller Giraldez", email="[email protected]"}
]
dynamic = ["dependencies"]
description = "An app based on pandas and scipy packages to load DataFrame-like tables either from remote or local repositories and generate synthetic samples from it."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: System :: Archiving :: Mirroring"
]
[tool.setuptools]
packages = ["synthDataGen", "synthDataGen.common", "synthDataGen.settings"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
"Homepage" = "https://github.com/bsc-quantic/synthDataGen"
[tool.black]
line-length = 1000