-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mgd-rss"
version = "0.1.0"
description = "Hybrid Bayesian Generative Model for Synthetic Data Generation in Civil Engineering"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "GPLv3"}
authors = [
{ name = "Vjačeslav Usmanov", email = "vjaceslav.usmanov@cvut.cz" }
]
keywords = [
"synthetic data",
"bayesian calibration",
"MCMC",
"hybrid modeling",
"AI training"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3 License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Civil Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"numpy",
"pandas",
"scipy",
"matplotlib",
"seaborn",
"scikit-learn",
"pymc",
"arviz",
"xarray",
"netcdf4"
]
[project.urls]
Homepage = "https://github.com/UsmanovSla/MGD-RSS"
Repository = "https://github.com/UsmanovSla/MGD-RSS"
Documentation = "https://github.com/UsmanovSla/MGD-RSS#readme"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mgd-rss.metadata]
data_format = ["CSV", "NetCDF"]
model_type = "Hybrid Bayesian Generative Model"
calibration_method = "MCMC (NUTS)"
data_provenance = "Time study measurements of robotic masonry process"
license_data = "GPLv3"