blob: ef7c00ce3a5ba029662b96c1514510770041262e (
plain)
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
|
{% extends "base.html" %}
{% load static %}
{% block content %}
<br>
<h2 align="center"><u>Sponsors</u></h2>
<br>
<div class="sponsor">
<img src="{% static 'images/enthought_logo.png' %}" width=275>
<p>
<a href="http://www.enthought.com/" target=_blank>Enthought Inc.</a>
is a software company based in Austin, Texas, USA that develops scientific
computing solutions using primarily the Python programming language. It
is best known for the early development and maintenance of the
<a href="http://scipy.org/" target=_blank>SciPy</a> library of
mathematics, science, and engineering algorithms and for its Python
for scientific computing distribution
<a href="https://www.enthought.com/products/canopy/" target=_blank>Enthought Canopy</a> (formerly EPD).
</p>
<div class="clearfix"></div>
</div> <!-- /sponsor -->
<div class="sponsor">
<img src="{% static 'images/mhrd_logo.png' %}"> <br> <br>
<p>
The <a href="http://fossee.in/">FOSSEE project</a> undertaken by IIT Bombay
is funded by <a href="http://mhrd.gov.in/">Ministry of Human Resource
Development(Govt. of India)</a> under National Mission on Education through ICT
</p>
<div class="clearfix"></div>
</div> <!-- /sponsor -->
<br>
<h2 align="center"><u>Orgranizers</u></h2>
<div class="sponsor">
<img src="{% static 'images/fossee.jpg' %}" height=100 width=275> <br>
<p>
Annual SciPy India conference is organized by the team members of
<a href="http://fossee.in/">FOSSEE</a> project. For any queries you
may writes us at info[at]fossee[dot]in
</p>
<div class="clearfix"></div>
</div>
{% endblock %}
|