Skip to content

Commit

Permalink
Update package versions, add dependency to Python.
Browse files Browse the repository at this point in the history
The pip package was registered but not uploaded somehow. Seems to be
working now. Dependence on jsonschema was added.
  • Loading branch information
presleyp committed Jan 6, 2015
1 parent ba86dae commit 2d43acb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "speriment",
"version": "0.1.0",
"version": "0.2.0",
"description": "Making experiments easier to express",
"keywords": ["experiment", "Mechanical Turk", "linguistics", "psychology", "social science"],
"bugs": "issues",
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='speriment',
version='0.1',
version='0.2.1',
description='Making experiments easier to express',
url='http://github.com/presleyp/speriment',
author='Presley Pizzo',
Expand All @@ -14,5 +14,6 @@
packages=['speriment'],
package_data={'speriment': ['sperimentschema.json']},
scripts=['bin/speriment-output'],
install_requires=['jsonschema'],
include_package_data=True,
zip_safe=False)

0 comments on commit 2d43acb

Please sign in to comment.