-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julian Liederer
committed
May 20, 2018
0 parents
commit edbcae9
Showing
266 changed files
with
42,879 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Copyright (c) 2014 Daniel Li Chen, Martin Walter Schonger, Christopher Wickens. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
|
||
The Licensee undertakes to mention the name oTree, the names of the licensors | ||
(Daniel L. Chen, Martin Schonger and Christopher Wickens) and to cite the | ||
following article in all publications in which results of experiments conducted | ||
with the Software are published: Chen, Daniel L., Martin Schonger, and Chris Wickens. | ||
2016. "oTree - An open-source platform for laboratory, online, and field experiments." | ||
Journal of Behavioral and Experimental Finance, vol 9: 88-97. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
include LICENSE | ||
include README.rst | ||
include requirements.txt | ||
include requirements_mturk.txt | ||
recursive-include otree/certs * | ||
recursive-include otree/static * | ||
recursive-include otree/templates * | ||
recursive-include otree/project_template * | ||
recursive-include otree/app_template/templates * | ||
recursive-include otree/locale * | ||
recursive-include otree *.pyi | ||
recursive-exclude tests * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
Metadata-Version: 1.1 | ||
Name: otree | ||
Version: 2.1.1 | ||
Summary: oTree is a toolset that makes it easy to create and administer web-based social science experiments. | ||
Home-page: http://otree.org/ | ||
Author: chris@otree.org | ||
Author-email: chris@otree.org | ||
License: MIT License | ||
Description: `Homepage`_ | ||
|
||
These are the core oTree libraries. | ||
|
||
Before you fork this project, keep in mind that otree-core is updated | ||
frequently, and over time you might get upstream merge conflicts, as | ||
your local project diverges from the oTree mainline version. | ||
|
||
Instead, consider creating a project with ``otree startproject`` and | ||
making your modifications in an app, using oTree’s public API. You can | ||
create custom URLs, channels, override settings, etc. | ||
|
||
Docs | ||
---- | ||
|
||
http://otree.readthedocs.io/en/latest/index.html | ||
|
||
Quickstart | ||
---------- | ||
|
||
Typical setup | ||
~~~~~~~~~~~~~ | ||
|
||
:: | ||
|
||
pip install -U otree | ||
otree startproject oTree | ||
cd oTree | ||
otree devserver | ||
|
||
Core dev setup | ||
~~~~~~~~~~~~~~ | ||
|
||
If you are modifying otree-core locally, clone or download this repo, | ||
then run this from the project root: | ||
|
||
:: | ||
|
||
pip install -e . | ||
cd .. # or wherever you will start your project | ||
otree startproject oTree | ||
cd oTree | ||
otree devserver | ||
|
||
|
||
|Build Status| | ||
|
||
.. _Homepage: http://www.otree.org/ | ||
|
||
.. |Build Status| image:: https://travis-ci.org/oTree-org/otree-core.svg?branch=master | ||
:target: https://travis-ci.org/oTree-org/otree-core | ||
Platform: UNKNOWN | ||
Classifier: Environment :: Web Environment | ||
Classifier: Framework :: Django | ||
Classifier: Framework :: Django :: 1.11 | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Topic :: Internet :: WWW/HTTP | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
`Homepage`_ | ||
|
||
These are the core oTree libraries. | ||
|
||
Before you fork this project, keep in mind that otree-core is updated | ||
frequently, and over time you might get upstream merge conflicts, as | ||
your local project diverges from the oTree mainline version. | ||
|
||
Instead, consider creating a project with ``otree startproject`` and | ||
making your modifications in an app, using oTree’s public API. You can | ||
create custom URLs, channels, override settings, etc. | ||
|
||
Docs | ||
---- | ||
|
||
http://otree.readthedocs.io/en/latest/index.html | ||
|
||
Quickstart | ||
---------- | ||
|
||
Typical setup | ||
~~~~~~~~~~~~~ | ||
|
||
:: | ||
|
||
pip install -U otree | ||
otree startproject oTree | ||
cd oTree | ||
otree devserver | ||
|
||
Core dev setup | ||
~~~~~~~~~~~~~~ | ||
|
||
If you are modifying otree-core locally, clone or download this repo, | ||
then run this from the project root: | ||
|
||
:: | ||
|
||
pip install -e . | ||
cd .. # or wherever you will start your project | ||
otree startproject oTree | ||
cd oTree | ||
otree devserver | ||
|
||
|
||
|Build Status| | ||
|
||
.. _Homepage: http://www.otree.org/ | ||
|
||
.. |Build Status| image:: https://travis-ci.org/oTree-org/otree-core.svg?branch=master | ||
:target: https://travis-ci.org/oTree-org/otree-core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
Metadata-Version: 1.1 | ||
Name: otree | ||
Version: 2.1.1 | ||
Summary: oTree is a toolset that makes it easy to create and administer web-based social science experiments. | ||
Home-page: http://otree.org/ | ||
Author: chris@otree.org | ||
Author-email: chris@otree.org | ||
License: MIT License | ||
Description: `Homepage`_ | ||
|
||
These are the core oTree libraries. | ||
|
||
Before you fork this project, keep in mind that otree-core is updated | ||
frequently, and over time you might get upstream merge conflicts, as | ||
your local project diverges from the oTree mainline version. | ||
|
||
Instead, consider creating a project with ``otree startproject`` and | ||
making your modifications in an app, using oTree’s public API. You can | ||
create custom URLs, channels, override settings, etc. | ||
|
||
Docs | ||
---- | ||
|
||
http://otree.readthedocs.io/en/latest/index.html | ||
|
||
Quickstart | ||
---------- | ||
|
||
Typical setup | ||
~~~~~~~~~~~~~ | ||
|
||
:: | ||
|
||
pip install -U otree | ||
otree startproject oTree | ||
cd oTree | ||
otree devserver | ||
|
||
Core dev setup | ||
~~~~~~~~~~~~~~ | ||
|
||
If you are modifying otree-core locally, clone or download this repo, | ||
then run this from the project root: | ||
|
||
:: | ||
|
||
pip install -e . | ||
cd .. # or wherever you will start your project | ||
otree startproject oTree | ||
cd oTree | ||
otree devserver | ||
|
||
|
||
|Build Status| | ||
|
||
.. _Homepage: http://www.otree.org/ | ||
|
||
.. |Build Status| image:: https://travis-ci.org/oTree-org/otree-core.svg?branch=master | ||
:target: https://travis-ci.org/oTree-org/otree-core | ||
Platform: UNKNOWN | ||
Classifier: Environment :: Web Environment | ||
Classifier: Framework :: Django | ||
Classifier: Framework :: Django :: 1.11 | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Topic :: Internet :: WWW/HTTP | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content |
Oops, something went wrong.