summaryrefslogtreecommitdiff
path: root/beautifulsoup
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2017-08-17 09:38:59 -0400
committerMatt Rendina <mrendina@stsci.edu>2017-08-17 09:38:59 -0400
commit9de41f4ac2f9a56910f3d19ccf0847bae0411454 (patch)
tree8cd86ec5377cd91946ac9b6b35a2cd3522b6c589 /beautifulsoup
parentb6a3f2102b313d94e41876f8f4839e1afb6077fd (diff)
downloadastroconda-etc-9de41f4ac2f9a56910f3d19ccf0847bae0411454.tar.gz
Adding recipes for packages not provided by default reposadd_recipes
Diffstat (limited to 'beautifulsoup')
-rw-r--r--beautifulsoup/meta.yaml38
1 files changed, 38 insertions, 0 deletions
diff --git a/beautifulsoup/meta.yaml b/beautifulsoup/meta.yaml
new file mode 100644
index 0000000..fafb33f
--- /dev/null
+++ b/beautifulsoup/meta.yaml
@@ -0,0 +1,38 @@
+{% set name = "beautifulsoup" %}
+{% set version = "3.2.1" %}
+{% set hash_type = "sha256" %}
+{% set hash_value = "6a8cb4401111e011b579c8c52a51cdab970041cc543814bbd9577a4529fe1cdb" %}
+
+package:
+ version: '{{ version }}'
+ name: '{{ name|lower }}'
+
+source:
+ #url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
+ url: https://files.pythonhosted.org/packages/1e/ee/295988deca1a5a7accd783d0dfe14524867e31abb05b6c0eeceee49c759d/BeautifulSoup-3.2.1.tar.gz
+ '{{ hash_type }}': '{{ hash_value }}'
+ fn: '{{ name }}-{{ version }}.tar.gz'
+
+build:
+ number: 0
+ script: 'python setup.py install '
+
+requirements:
+ run:
+ - python
+ build:
+ - python
+
+about:
+ dev_url: ''
+ description: "This package is OBSOLETE. It has been replaced by the beautifulsoup4 package. You should use Beautiful Soup 4 for all new projects.\r\n\r\nBeautiful Soup parses arbitrarily invalid SGML\
+ \ and provides a variety of methods and Pythonic idioms for iterating and searching the parse tree."
+ license: Python Software Foundation License
+ license_family: OTHER
+ summary: HTML/XML parser for quick-turnaround applications like screen-scraping.
+ home: http://www.crummy.com/software/BeautifulSoup/
+ license_file: ''
+ doc_url: ''
+
+extra:
+ recipe-maintainers: ''