Skip to content
Snippets Groups Projects

Resolve "File, dir renaming"

Merged Florian Schröder requested to merge 71-file-dir-renaming-2 into main
Files
155
+ 11
11
{% set data = load_setup_py_data() %}
{ % set data = load_setup_py_data() % }
package:
name: overcooked-simulator
version: {{ data['version'] }}
name: cooperative_cuisine
version: { { data[ 'version' ] } }
source:
path: ..
@@ -12,10 +12,10 @@ build:
# 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 # [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
requirements:
# if you need compilers, uncomment these
@@ -28,9 +28,9 @@ requirements:
run:
- python
# dependencies are defined in setup.py
{% for dep in data['install_requires'] %}
- {{ dep.lower() }}
{% endfor %}
{ % for dep in data[ 'install_requires' ] % }
- { { dep.lower() } }
{ % endfor % }
test:
source_files:
@@ -43,6 +43,6 @@ test:
about:
home: https://gitlab.ub.uni-bielefeld.de/scs/cocosy/overcooked-simulator
summary: The real-time overcooked simulation for a cognitive cooperative system
license: {{ data.get('license') }}
summary: A overcooked-like environment for a cognitive cooperative system (also in real-time)
license: { { data.get('license') } }
license_file: LICENSE
\ No newline at end of file
Loading