forked from conda-forge/whitenoise-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
49 lines (42 loc) · 1.46 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{% set name = "whitenoise" %}
{% set version = "5.0.1" %}
{% set sha256 = "0f9137f74bd95fa54329ace88d8dc695fbe895369a632e35f7a136e003e41d73" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
noarch: python
number: 0
script: python -m pip install --no-deps --ignore-installed .
requirements:
host:
- pip
- python
- setuptools
run:
- python
test:
imports:
- whitenoise
about:
home: https://github.com/evansd/whitenoise
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'Radically simplified static file serving for Python web apps'
description: |
With a couple of lines of config WhiteNoise allows your web app to serve its own static files,
making it a self-contained unit that can be deployed anywhere without relying on nginx, Amazon
S3 or any other external service. (Especially useful on Heroku, OpenShift and other PaaS providers.)
It's designed to work nicely with a CDN for high-traffic sites so you don't have to sacrifice
performance to benefit from simplicity. WhiteNoise works with any WSGI-compatible app but has some
special auto-configuration features for Django.
doc_url: http://whitenoise.evans.io/en/stable/
dev_url: https://github.com/evansd/whitenoise
extra:
recipe-maintainers:
- ome