-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.73 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PreCICE-Genesis"
description = "Generates File and Folder Structure, including all of the necessary files to quickly kickstart a simulation"
version = "0.1.0"
readme = "README.md"
license = {text = "MIT"}
authors = [
{ name = "VanLaareN", email = "vanlaren@example.com" },
{ name = "Toddelismyname", email = "116207910+Toddelismyname@users.noreply.github.com" }
]
requires-python = ">= 3.10"
dependencies = [
"attrs==24.2.0",
"colorama==0.4.6",
"exceptiongroup==1.2.2",
"iniconfig==2.0.0",
"jsonschema==4.23.0",
"jsonschema-specifications==2024.10.1",
"lxml==5.3.0",
"myutils==0.0.21",
"packaging==24.2",
"pip-check-reqs==2.5.3",
"pluggy==1.5.0",
"pyaml==24.9.0",
"pytest==8.3.4",
"PyYAML==6.0.2",
"referencing==0.35.1",
"rpds-py==0.18.0",
"termcolor==2.5.0",
"tomli==2.2.1",
"xmltodict==0.14.2",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"mypy",
"pytest-cov",
]
[project.scripts]
precice-genesis = "FileGenerator:main"
[project.urls]
Repository = "https://github.com/precice-forschungsprojekt/PreCICE-Genesis"
Issues = "https://github.com/precice-forschungsprojekt/PreCICE-Genesis/issues"
Documentation = "https://github.com/precice-forschungsprojekt/PreCICE-Genesis/blob/main/README.md"
[tool.setuptools]
py-modules = [
"FileGenerator",
"format_precice_config",
"generation_utils.StructureHandler",
"generation_utils.Logger",
"generation_utils.AdapterConfigGenerator",
"controller_utils.ui_struct.UI_UserInput",
"controller_utils.myutils.UT_PCErrorLogging",
"controller_utils.precice_struct"
]