diff options
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 }} |