Skip to content
Snippets Groups Projects

Resolve "File, dir renaming"

Merged Florian Schröder requested to merge 71-file-dir-renaming-2 into main
155 files
+ 301
296
Compare changes
  • Side-by-side
  • Inline
Files
155
  • All instances of 'overcooked_simulator' have been replaced with 'cooperative_cuisine'. This includes changes in file paths, imports, and script names. The necessary adjustments to reflect this rename have also been made in the documentation, setup files, test scripts, and CI/CD configuration.
+ 11
11
{% set data = load_setup_py_data() %}
{ % set data = load_setup_py_data() % }
package:
package:
name: overcooked-simulator
name: cooperative_cuisine
version: {{ data['version'] }}
version: { { data[ 'version' ] } }
source:
source:
path: ..
path: ..
@@ -12,10 +12,10 @@ build:
@@ -12,10 +12,10 @@ build:
# separate bld.bat and build.sh files instead of this key. Add the line
# separate bld.bat and build.sh files instead of this key. Add the line
# "skip: True # [py<35]" (for example) to limit to Python 3.5 and newer, or
# "skip: True # [py<35]" (for example) to limit to Python 3.5 and newer, or
# "skip: True # [not win]" to limit to Windows.
# "skip: True # [not win]" to limit to Windows.
script: {{ PYTHON }} -m pip install --no-deps --ignore-installed -vv .
script: { { PYTHON } } -m pip install --no-deps --ignore-installed -vv .
noarch: python
noarch: python
requirements:
requirements:
# if you need compilers, uncomment these
# if you need compilers, uncomment these
@@ -28,9 +28,9 @@ requirements:
@@ -28,9 +28,9 @@ requirements:
run:
run:
- python
- python
# dependencies are defined in setup.py
# dependencies are defined in setup.py
{% for dep in data['install_requires'] %}
{ % for dep in data[ 'install_requires' ] % }
- {{ dep.lower() }}
- { { dep.lower() } }
{% endfor %}
{ % endfor % }
test:
test:
source_files:
source_files:
@@ -43,6 +43,6 @@ test:
@@ -43,6 +43,6 @@ test:
about:
about:
home: https://gitlab.ub.uni-bielefeld.de/scs/cocosy/overcooked-simulator
home: https://gitlab.ub.uni-bielefeld.de/scs/cocosy/overcooked-simulator
summary: The real-time overcooked simulation for a cognitive cooperative system
summary: A overcooked-like environment for a cognitive cooperative system (also in real-time)
license: {{ data.get('license') }}
license: { { data.get('license') } }
license_file: LICENSE
license_file: LICENSE
 
\ No newline at end of file
Loading