https://github.com/aiidateam/aiida_core
Raw File
Tip revision: 0067d7a37070cd6d68485ae91d7887298c5c6cb6 authored by Leopold Talirz on 15 April 2019, 13:56:52 UTC
release v0.7.1.1
Tip revision: 0067d7a
requirements.txt
## To install these requirements, run
## pip install -U -r requirements.txt
## (the -U option also upgrades packages; from the second time on,
## just run
## pip install -r requirements.txt
##
## NOTE: before running the command above, you need to install a recent version
## of pip from the website, and then possibly install/upgrade setuptools using
## sudo pip install --upgrade setuptools

## Django
django==1.7.4

## For the UUID field
django_extensions==1.5

## For timezone support
pytz==2014.10

## For the daemon
django-celery==3.1.16
celery==3.1.17
billiard==3.3.0.19
amqp==1.4.9
anyjson==0.3.3
six==1.9
supervisor==3.1.3
meld3==1.0.0

# For the AiiDA shell
ipython

## Paramiko, for ssh connections
paramiko==1.15.2
ecdsa==0.13
pycrypto==2.6.1

## NumPy, mainly for the ArrayData objects but sometimes
## used also for arrays in other parts of the code
numpy

## Tastypie, for the REST API interface
django-tastypie==0.12.1
python-dateutil==2.4.0
python-mimeparse==0.1.4

# SQLAlchemy support
SQLAlchemy==1.0.12
SQLAlchemy-Utils==0.31.2
ujson==1.35

# For workflows
enum34==1.1.2
plumpy==0.4.3.1
voluptuous==0.8.11

# For the QueryBuilder in Django when testing:
aldjemy
# Password hashing
passlib

# Email validation for verdi install
validate_email

# For composable command line options
click==6.6

# Pretty-print tables
tabulate==0.7.5

# To get ASCII trees, may make this optional later
ete3==3.0.0b35

simplejson
back to top