diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-10-17 16:36:56 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-10-17 16:36:56 -0400 |
commit | 3b51cabe9c2a9b763bbd8d7f5fe1f8e28a3eb5e8 (patch) | |
tree | d599940979a256be5ccf00dd3a344bbc0443f0d1 /django | |
parent | feb18f655ecf508a7f83a558eae8909f77163f0a (diff) | |
download | astroconda-etc-3b51cabe9c2a9b763bbd8d7f5fe1f8e28a3eb5e8.tar.gz |
Initial commit; OOB packages
Diffstat (limited to 'django')
-rw-r--r-- | django/build.sh | 1 | ||||
-rw-r--r-- | django/meta.yaml | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/django/build.sh b/django/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/django/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/django/meta.yaml b/django/meta.yaml new file mode 100644 index 0000000..64baae1 --- /dev/null +++ b/django/meta.yaml @@ -0,0 +1,43 @@ +{% set name = 'django' %} +{% set version = '1.8.14' %} +{% set build = '0' %} + +package: + name: {{ name }} + version: {{ version }} + +source: + git_tag: {{ version }} + git_url: https://github.com/{{ name }}/{{ name }}.git + +build: + entry_points: + - django-admin = django.core.management:execute_from_command_line + - django-admin.py = django.core.management:execute_from_command_line + +requirements: + build: + - python + - setuptools + run: + - python + +test: + commands: + - django-admin --version + imports: + - django + - django.http + +about: + home: http://www.djangoproject.com/ + license: BSD + license_file: LICENSE + summary: Web framework that encourages rapid development + description: | + Django is a high-level Python Web framework that encourages rapid + development and clean, pragmatic design. Built by experienced developers, it + takes care of much of the hassle of Web development, so you can focus on + writing your app without needing to reinvent the wheel. + doc_url: https://docs.djangoproject.com/en/1.8/ + dev_url: https://github.com/{{ name }} |