Skip to content

Commit

Permalink
WEB: Improving the sponsors in the web, and adding CZI (pandas-dev#31046
Browse files Browse the repository at this point in the history
)
  • Loading branch information
datapythonista authored Jan 17, 2020
1 parent f6747b9 commit b68a9bb
Show file tree
Hide file tree
Showing 5 changed files with 106 additions and 24 deletions.
39 changes: 29 additions & 10 deletions web/pandas/about/sponsors.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,50 @@ health and sustainability of the project. Visit numfocus.org for more informatio
Donations to _pandas_ are managed by NumFOCUS. For donors in the United States, your gift is tax-deductible
to the extent provided by law. As with any donation, you should consult with your tax adviser about your particular tax situation.

## Tidelift
## Become a sponsor

_pandas_ is part of the [Tidelift subscription](https://tidelift.com/subscription/pkg/pypi-pandas?utm_source=pypi-pandas&utm_medium=referral&utm_campaign=readme).
You can support pandas by becoming a Tidelift subscriber.
As a free and open source project, _pandas_ relies on the support of the community of users for its development.
If you work for an organization that uses and benefits from _pandas_, please consider supporting pandas. There
are different ways, such as employing people to work on pandas, funding the project, or becoming a
[NumFOCUS sponsor](https://numfocus.org/sponsors) to support the broader ecosystem. Please contact us at
[[email protected]](mailto:[email protected]) to discuss.

## Institutional partners

Institutional Partners are companies and universities that support the project by employing contributors.
Current Institutional Partners include:
Institutional partners are companies and universities that support the project by employing contributors.
Current institutional partners include:

<ul>
{% for company in partners.active if company.employs %}
<li><a href="{{ company.url }}">{{ company.name }}</a> ({{ company.employs }})</li>
{% for company in sponsors.active if company.kind == "partner" %}
<li><a href="{{ company.url }}">{{ company.name }}</a>: {{ company.description }}</li>
{% endfor %}
</ul>

## Sponsors

Sponsors are organizations that provide funding for pandas. Current sponsors include:

<ul>
{% for company in sponsors.active if company.kind == "regular" %}
<li><a href="{{ company.url }}">{{ company.name }}</a>: {{ company.description }}</li>
{% endfor %}
</ul>

## In-kind sponsors

- [OVH](https://us.ovhcloud.com/): Hosting
- [Indeed](https://opensource.indeedeng.io/): Logo and website design
In-kind sponsors are organizations that support pandas development with goods or services.
Current in-kind sponsors include:

<ul>
{% for company in sponsors.inkind %}
<li><a href="{{ company.url }}">{{ company.name }}</a>: {{ company.description }}</li>
{% endfor %}
</ul>

## Past institutional partners

<ul>
{% for company in partners.past %}
{% for company in sponsors.past if company.kind == "partner" %}
<li><a href="{{ company.url }}">{{ company.name }}</a></li>
{% endfor %}
</ul>
30 changes: 25 additions & 5 deletions web/pandas/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,30 +99,50 @@ maintainers:
- Wes McKinney
- Jeff Reback
- Joris Van den Bossche
partners:
sponsors:
active:
- name: "NumFOCUS"
url: https://numfocus.org/
logo: /static/img/partners/numfocus.svg
kind: numfocus
- name: "Anaconda"
url: https://www.anaconda.com/
logo: /static/img/partners/anaconda.svg
employs: "Tom Augspurger, Brock Mendel"
kind: partner
description: "Tom Augspurger, Brock Mendel"
- name: "Two Sigma"
url: https://www.twosigma.com/
logo: /static/img/partners/two_sigma.svg
employs: "Phillip Cloud, Jeff Reback"
kind: partner
description: "Phillip Cloud, Jeff Reback"
- name: "RStudio"
url: https://www.rstudio.com/
logo: /static/img/partners/r_studio.svg
employs: "Wes McKinney"
kind: partner
description: "Wes McKinney"
- name: "Ursa Labs"
url: https://ursalabs.org/
logo: /static/img/partners/ursa_labs.svg
employs: "Wes McKinney, Joris Van den Bossche"
kind: partner
description: "Wes McKinney, Joris Van den Bossche"
- name: "Tidelift"
url: https://tidelift.com
logo: /static/img/partners/tidelift.svg
kind: regular
description: "<i>pandas</i> is part of the <a href=\"https://tidelift.com/subscription/pkg/pypi-pandas?utm_source=pypi-pandas&utm_medium=referral&utm_campaign=readme\">Tidelift subscription</a>. You can support pandas by becoming a Tidelift subscriber."
- name: "Chan Zuckerberg Initiative"
url: https://chanzuckerberg.com/
logo: /static/img/partners/czi.svg
kind: regular
description: "<i>pandas</i> is funded by the Essential Open Source Software for Science program of the Chan Zuckerberg Initiative. The funding is used for general maintainance, improve extension types, and a efficient string type."
inkind: # not included in active so they don't appear in the home page
- name: "OVH"
url: https://us.ovhcloud.com/
description: "Website and documentation hosting."
- name: "Indeed"
url: https://opensource.indeedeng.io/
description: "<i>pandas</i> logo design"
past:
- name: "Paris-Saclay Center for Data Science"
url: https://www.datascience-paris-saclay.fr/
kind: partner
23 changes: 14 additions & 9 deletions web/pandas/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,20 @@ <h5>Community</h5>
</div>
<section>
<h5>With the support of:</h5>
<div class="row h-100">
{% for company in partners.active %}
<div class="col-sm-6 col-md-2 my-auto">
<a href="{{ company.url }}" target="_blank">
<img class="img-fluid" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
</a>
</div>
{% endfor %}
</div>
{% for row in sponsors.active | batch(6, "") %}
<div class="row h-100">
{% for company in row %}
<div class="col-sm-6 col-md-2 my-auto">
{% if company %}
<a href="{{ company.url }}" target="_blank">
<img class="img-fluid" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
</a>
{% endif %}
</div>
{% endfor %}
</div>
{% endfor %}
<p class="mt-4">The full list of companies supporting <i>pandas</i> is available in the <a href="{{ base_url }}/about/sponsors.html">sponsors page</a>.
</section>
</div>
<div class="col-md-3">
Expand Down
Loading

0 comments on commit b68a9bb

Please sign in to comment.