Sandbox-installed packages will be really installed instead of -e installed.

This commit is contained in:
Ned Batchelder
2013-05-21 17:25:37 -04:00
committed by e0d
parent e52acbbf22
commit 534d67378b
4 changed files with 10 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="calc",
version="0.1",
version="0.1.1",
py_modules=["calc"],
install_requires=[
"pyparsing==1.5.6",

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="chem",
version="0.1",
version="0.1.1",
packages=["chem"],
install_requires=[
"pyparsing==1.5.6",

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="sandbox-packages",
version="0.1",
version="0.1.1",
packages=[
"verifiers",
],

View File

@@ -1,6 +1,10 @@
# Packages to install in the Python sandbox for secured execution.
scipy==0.11.0
lxml==3.0.1
-e common/lib/calc
-e common/lib/chem
-e common/lib/sandbox-packages
# Install these packages from the edx-platform working tree
# NOTE: if you change code in these packages, you MUST change the version
# number in its setup.py or the code WILL NOT be installed during deploy.
common/lib/calc
common/lib/chem
common/lib/sandbox-packages