forked from ki-oss/hades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
130 lines (112 loc) · 2.44 KB
/
.gitignore
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Allow list style .gitignore
# root
/*
!.gitignore
!README.md
!README.pypi.md
!LICENSE.md
!CONTRIBUTING.md
!poetry.lock
!pyproject.toml
!mkdocs.yml
!Makefile
# hades/
!hades/
hades/*
!hades/__init__.py
!hades/py.typed
!hades/logging.py
# hades/core
!hades/core
hades/core/*
!hades/core/__init__.py
!hades/core/event.py
!hades/core/process.py
!hades/core/hades.py
# hades/time
!hades/time
hades/time/*
!hades/time/__init__.py
!hades/time/day_steps.py
!hades/time/event.py
!hades/time/logging.py
!hades/time/process.py
# hades/visualisation
!hades/visualisation/
hades/visualisation/*
!hades/visualisation/__init__.py
!hades/visualisation/networkx.py
!hades/visualisation/websockets.py
# examples
!examples/
examples/*
!examples/__init__.py
!examples/battery_charging_station.py
!examples/boids/
examples/boids/*
!examples/boids/boids.py
!examples/boids/boids_websockets_client.html
!examples/readme_usage.py
!examples/multi_agent_llm_storytelling/
examples/multi_agent_llm_storytelling/*
!examples/multi_agent_llm_storytelling/__init__.py
!examples/multi_agent_llm_storytelling/events.py
!examples/multi_agent_llm_storytelling/processes.py
!examples/multi_agent_llm_storytelling/prompts.py
!examples/multi_agent_llm_storytelling/simulation.py
!examples/multi_agent_llm_storytelling/utilities.py
!examples/multi_agent_llm_storytelling/output.txt
!examples/multi_agent_llm_storytelling/models.py
# tests
!tests/
tests/*
!tests/__init__.py
!tests/test_hades.py
!tests/test_hades_performance.py
!tests/test_event.py
!tests/test_concurrency.py
!tests/test_logging.py
!tests/test_process.py
# tests/examples
!tests/examples/
tests/examples/*
!tests/examples/test_battery_charging_station.py
!tests/examples/test_readme_usage.py
# tests/time
!tests/time/
tests/time/*
!tests/time/__init__.py
!tests/time/test_day_steps.py
!tests/time/test_logging.py
!tests/time/test_process.py
!tests/time/test_event.py
# tests/visualisation
!tests/visualisation/
tests/visualisation/*
!tests/visualisation/__init__.py
!tests/visualisation/test_networkx.py
!tests/visualisation/test_websockets.py
# docs
!docs/
docs/*
!docs/*.md
!docs/examples/
docs/examples/*
!docs/guides/
docs/guides/*
!docs/api_reference/
docs/api_reference/*
!docs/img
docs/img/*
!docs/img/boids.gif
!docs/img/hades_white.png
!docs/img/hades_black.png
!docs/**/*.md
# .github
!/.github/
/.github/*
!/.github/workflows
/.github/workflows/*
!/.github/workflows/pr.yaml
!/.github/workflows/publish.yaml
!/.github/workflows/docs.yaml