-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (38 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
47 lines (38 loc) · 1.55 KB
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
45
46
47
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "synthetic-datagen"
version = "1.0.0"
description = "Self-contained synthetic typical_price timeseries generator with plugin architecture"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [{name = "Harvey Bastidas", email = "harveybc@users.noreply.github.com"}]
keywords = ["synthetic-data", "timeseries", "gan", "vae", "financial"]
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"tensorflow>=2.14",
"scipy>=1.11",
"scikit-learn>=1.3",
"deap>=1.4",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-cov"]
[project.scripts]
sdg = "app.main:main"
[project.entry-points."sdg.trainer"]
vae_trainer = "sdg_plugins.trainer.vae_trainer:VaeTrainer"
gan_trainer = "sdg_plugins.trainer.gan_trainer:GanTrainer"
vae_gan_trainer = "sdg_plugins.trainer.vae_gan_trainer:VaeGanTrainer"
[project.entry-points."sdg.generator"]
typical_price_generator = "sdg_plugins.generator.typical_price_generator:TypicalPriceGenerator"
[project.entry-points."sdg.evaluator"]
distribution_evaluator = "sdg_plugins.evaluator.distribution_evaluator:DistributionEvaluator"
predictive_evaluator = "sdg_plugins.evaluator.predictive_evaluator:PredictiveEvaluator"
augmentation_evaluator = "sdg_plugins.evaluator.augmentation_evaluator:AugmentationEvaluator"
[project.entry-points."sdg.optimizer"]
ga_optimizer = "sdg_plugins.optimizer.ga_optimizer:GaOptimizer"
[tool.setuptools.packages.find]
include = ["app*", "sdg_plugins*"]