Makefile updates, updated requirement packages, added requirements files for both local and PyPI installations.

This commit is contained in:
Chris Church
2013-06-20 15:53:10 -04:00
parent b511b08014
commit f0a0a69ec7
10 changed files with 154 additions and 39 deletions

Binary file not shown.

View File

@@ -1,10 +1,12 @@
# PIP requirements for AnsibleWorks development/build environment.
# Install using "pip -r dev.txt"
# PIP requirements for AnsibleWorks development/build environment (downloaded
# from PyPI). Install using "pip -r dev.txt".
-U distribute
# Packages used for development and production:
Django>=1.5
django-celery
django-extensions
django-filter
django-jsonfield
django-taggit
djangorestframework>=2.3.0,<2.4.0
@@ -14,6 +16,7 @@ python-dateutil
requests
South>=0.8,<2.0
# Development-only packages:
django-debug-toolbar
django-devserver
ipython
@@ -21,8 +24,6 @@ ipython
# You may also need to install the following extra packages using the OS
# package manager, or pip if you're running inside a virtualenv.
# - ansible (via yum, pip or source checkout)
# - distribute (Use the latest version via "pip install -U distribute"; the
# default python-setuptools package is old.)
# - psycopg2 (via "yum install python-psycopg2")
# - coverage (if you want to check test coverage, via "pip install coverage";
# the default python-coverage package is old.)

View File

@@ -0,0 +1,46 @@
# PIP requirements for AnsibleWorks development/build environment (using only
# local packages). Install using "pip --no-index -r dev_local.txt".
distribute-0.6.45.tar.gz
Django-1.5.1.tar.gz
# Needed by python-dateutil, django-extensions:
six-1.3.0.tar.gz
# Needed by kombu:
amqp-1.0.11.tar.gz
anyjson-0.3.3.tar.gz
# Needed by celery:
billiard-2.7.3.28.tar.gz
kombu-2.5.10.tar.gz
python-dateutil-2.1.tar.gz
# Needed by django-celery:
celery-3.0.19.tar.gz
pytz-2013b.tar.gz
# Remaining dev/prod packages:
django-celery-3.0.17.tar.gz
django-extensions-1.1.1.tar.gz
django-jsonfield-0.9.10.tar.gz
django-taggit-0.10a1.tar.gz
djangorestframework-2.3.5.tar.gz
Markdown-2.3.1.tar.gz
pexpect-2.4.tar.gz
requests-1.2.3.tar.gz
South-0.8.1.tar.gz
# Remaining dev-only packages:
django-debug-toolbar-0.9.4.tar.gz
django-devserver-0.6.2.tar.gz
ipython-0.13.2.zip
# You may also need to install the following extra packages using the OS
# package manager, or pip if you're running inside a virtualenv.
# - ansible (via yum, pip or source checkout)
# - psycopg2 (via "yum install python-psycopg2")
# - coverage-3.6.tar.gz (if you want to check test coverage; the default
# python-coverage package is old.)
# - readline-6.2.4.1.tar.gz (for using the ipython interactive shell)

Binary file not shown.

Binary file not shown.

19
requirements/prod.txt Normal file
View File

@@ -0,0 +1,19 @@
# PIP requirements for AnsibleWorks production environment (downloaded from
# PyPI). Install using "pip -r prod.txt".
Django>=1.5
django-celery
django-extensions
django-jsonfield
django-taggit
djangorestframework>=2.3.0,<2.4.0
Markdown
pexpect
python-dateutil
requests
South>=0.8,<2.0
# You may also need to install the following extra packages using the OS
# package manager, or pip if you're running inside a virtualenv.
# - ansible (via yum, pip or source checkout)
# - psycopg2 (via "yum install python-psycopg2")

View File

@@ -0,0 +1,36 @@
# PIP requirements for AnsibleWorks production environment (using only local
# packages). Install using "pip --no-index -r prod_local.txt".
Django-1.5.1.tar.gz
# Needed by python-dateutil, django-extensions:
six-1.3.0.tar.gz
# Needed by kombu:
amqp-1.0.11.tar.gz
anyjson-0.3.3.tar.gz
# Needed by celery:
billiard-2.7.3.28.tar.gz
kombu-2.5.10.tar.gz
python-dateutil-2.1.tar.gz
# Needed by django-celery:
celery-3.0.19.tar.gz
pytz-2013b.tar.gz
# Remaining packages:
django-celery-3.0.17.tar.gz
django-extensions-1.1.1.tar.gz
django-jsonfield-0.9.10.tar.gz
django-taggit-0.10a1.tar.gz
djangorestframework-2.3.5.tar.gz
Markdown-2.3.1.tar.gz
pexpect-2.4.tar.gz
requests-1.2.3.tar.gz
South-0.8.1.tar.gz
# You may also need to install the following extra packages using the OS
# package manager, or pip if you're running inside a virtualenv.
# - ansible (via yum, pip or source checkout)
# - psycopg2 (via "yum install python-psycopg2")

Binary file not shown.