-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.47 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
36
37
38
39
40
41
42
43
44
[build-system]
requires = ['setuptools', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = "syntherela"
version = "0.0.3"
dependencies = [
"sdv>=1.9.0,<2",
"seaborn>=0.13.2",
"xgboost>=1.7.6",
]
authors = [
{ name="Martin Jurkovic", email="martin.jurkovic19@gmail.com" },
{ name="Valter Hudovernik", email="valter.hudovernik@gmail.com" },
]
description = "SyntheRela - Synthetic Relational Data Generation Benchmark"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["python", "syntherela", "synthetic data", "relational data", "evaluation", "benchmark"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry"
]
[project.urls]
Homepage = "https://github.com/martinjurkovic/syntherela"
Issues = "https://github.com/martinjurkovic/syntherela/issues"
[tool.setuptools.packages.find]
where = ["."]