├── Lightning Talk.ipynb ├── README.md ├── dram.yaml ├── dram_baseline.yaml ├── examples ├── pycon.py └── simulate_characters.py ├── flock ├── __init__.py ├── closures.py ├── core.py └── util.py ├── mythica ├── Attribute Tables.csv └── model.py ├── pyproject.toml ├── requirements.txt ├── setup.py ├── stoggule_baseline.yaml └── test ├── __init__.py ├── test_closures.py ├── test_flockdict.py ├── test_hypothesis.py └── test_util.py /Lightning Talk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/Lightning Talk.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/README.md -------------------------------------------------------------------------------- /dram.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/dram.yaml -------------------------------------------------------------------------------- /dram_baseline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/dram_baseline.yaml -------------------------------------------------------------------------------- /examples/pycon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/examples/pycon.py -------------------------------------------------------------------------------- /examples/simulate_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/examples/simulate_characters.py -------------------------------------------------------------------------------- /flock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/flock/__init__.py -------------------------------------------------------------------------------- /flock/closures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/flock/closures.py -------------------------------------------------------------------------------- /flock/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/flock/core.py -------------------------------------------------------------------------------- /flock/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/flock/util.py -------------------------------------------------------------------------------- /mythica/Attribute Tables.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/mythica/Attribute Tables.csv -------------------------------------------------------------------------------- /mythica/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/mythica/model.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytest==3.4.0 2 | PyYAML==5.4 3 | wheel 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/setup.py -------------------------------------------------------------------------------- /stoggule_baseline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/stoggule_baseline.yaml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "Andy Fundinger" 2 | -------------------------------------------------------------------------------- /test/test_closures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/test/test_closures.py -------------------------------------------------------------------------------- /test/test_flockdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/test/test_flockdict.py -------------------------------------------------------------------------------- /test/test_hypothesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/test/test_hypothesis.py -------------------------------------------------------------------------------- /test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ciemaar/flock/HEAD/test/test_util.py --------------------------------------------------------------------------------