Skip to content

Commit ad11aa4

Browse files
henryiiieduardo-rodrigues
authored andcommitted
New Jekyll site (#9)
1 parent c133f2b commit ad11aa4

File tree

118 files changed

+1303
-10550
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+1303
-10550
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata
4+
.ruby-version

404.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

Gemfile

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
gem "jekyll", "~> 3.8.5"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
# Using remote theme instead
15+
# gem "just-the-docs"
16+
gem "rake"
17+
18+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
19+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
20+
# gem "github-pages", group: :jekyll_plugins
21+
22+
# If you have any plugins, put them here!
23+
group :jekyll_plugins do
24+
gem "jekyll-feed", "~> 0.6"
25+
gem "jekyll-remote-theme"
26+
gem "jekyll-seo-tag"
27+
end
28+
29+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
30+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
31+
32+
# Performance-booster for watching directories on Windows
33+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
34+

Gemfile.lock

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.6.0)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.1.5)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7)
12+
ffi (1.11.1)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (0.9.5)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (3.8.6)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 0.7)
22+
jekyll-sass-converter (~> 1.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 1.14)
25+
liquid (~> 4.0)
26+
mercenary (~> 0.3.3)
27+
pathutil (~> 0.9)
28+
rouge (>= 1.7, < 4)
29+
safe_yaml (~> 1.0)
30+
jekyll-feed (0.12.1)
31+
jekyll (>= 3.7, < 5.0)
32+
jekyll-remote-theme (0.4.0)
33+
addressable (~> 2.0)
34+
jekyll (~> 3.5)
35+
rubyzip (>= 1.2.1, < 3.0)
36+
jekyll-sass-converter (1.5.2)
37+
sass (~> 3.4)
38+
jekyll-seo-tag (2.6.1)
39+
jekyll (>= 3.3, < 5.0)
40+
jekyll-watch (2.2.1)
41+
listen (~> 3.0)
42+
kramdown (1.17.0)
43+
liquid (4.0.3)
44+
listen (3.1.5)
45+
rb-fsevent (~> 0.9, >= 0.9.4)
46+
rb-inotify (~> 0.9, >= 0.9.7)
47+
ruby_dep (~> 1.2)
48+
mercenary (0.3.6)
49+
pathutil (0.16.2)
50+
forwardable-extended (~> 2.6)
51+
public_suffix (3.1.1)
52+
rake (12.3.3)
53+
rb-fsevent (0.10.3)
54+
rb-inotify (0.10.0)
55+
ffi (~> 1.0)
56+
rouge (3.8.0)
57+
ruby_dep (1.5.0)
58+
rubyzip (1.2.3)
59+
safe_yaml (1.0.5)
60+
sass (3.7.4)
61+
sass-listen (~> 4.0.0)
62+
sass-listen (4.0.0)
63+
rb-fsevent (~> 0.9, >= 0.9.4)
64+
rb-inotify (~> 0.9, >= 0.9.7)
65+
66+
PLATFORMS
67+
ruby
68+
69+
DEPENDENCIES
70+
jekyll (~> 3.8.5)
71+
jekyll-feed (~> 0.6)
72+
jekyll-remote-theme
73+
jekyll-seo-tag
74+
rake
75+
tzinfo-data
76+
77+
BUNDLED WITH
78+
2.0.2

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# scikit-hep.github.io
2+
3+
GitHub pages for the website of the Scikit-HEP project.
4+
5+
To contain:
6+
7+
- General info on the project.
8+
- Documentation about the scikit-hep Python software package.
9+
10+
## Developer info
11+
12+
To build locally, install rbenv. Then:
13+
14+
```bash
15+
rbenv local 2.6.3
16+
bundle install
17+
bundle exec jekyll serve
18+
```

README.rst

Lines changed: 0 additions & 10 deletions
This file was deleted.

_config.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
title: Scikit-HEP
2+
3+
description: >-
4+
The Scikit-HEP project is a community-driven and community-oriented
5+
project with the aim of providing Particle Physics at large with an
6+
ecosystem for data analysis in Python. The project started in Autumn
7+
2016 and is under active development.
8+
baseurl: "/"
9+
url: "https://scikit-hep.org"
10+
github_username: scikit-hep
11+
12+
# Build settings
13+
markdown: kramdown
14+
# Local: theme: "just-the-docs"
15+
remote_theme: "pmarsceill/just-the-docs"
16+
plugins:
17+
- jekyll-feed
18+
19+
# Theme settings
20+
21+
# Enable or disable the site search
22+
search_enabled: false
23+
24+
# Aux links for the upper right navigation
25+
aux_links:
26+
"Scikit-HEP on GitHub":
27+
- "//github.com/scikit-hep"
28+
29+
# Exclude from processing.
30+
# The following items will not be processed, by default. Create a custom list
31+
# to override the default setting.
32+
# exclude:
33+
# - Gemfile
34+
# - Gemfile.lock
35+
# - node_modules
36+
# - vendor/bundle/
37+
# - vendor/cache/
38+
# - vendor/gems/
39+
# - vendor/ruby/

_data/categories.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
- name: manipulation
2+
title: Interoperability and data manipulation
3+
- name: interface
4+
title: Interface to HEP libraries
5+
- name: event
6+
title: Event processing
7+
- name: particle
8+
title: Particles and decays
9+
- name: histogramming
10+
title: Histogramming
11+
- name: fitting
12+
title: Fitting
13+
- name: simulation
14+
title: Simulation
15+
- name: ml
16+
title: Machine Learning
17+
- name: visualization
18+
title: Visualization
19+
- name: units
20+
title: Units and constants
21+
- name: misc
22+
title: Miscellaneous
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: awkward-array
2+
description: Manipulate arrays of complex data structures as easily as Numpy.
3+
url: https://github.com/scikit-hep/awkward-array
4+
readme: https://github.com/scikit-hep/awkward-array/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

_data/projects/fitting/iminuit.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: iminuit
2+
description: MINUIT from Python - Fitting like a boss.
3+
url: https://github.com/scikit-hep/iminuit
4+
readme: https://github.com/scikit-hep/iminuit/blob/master/README.rst
5+
docs: https://iminuit.readthedocs.io/
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

_data/projects/fitting/probfit.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: probfit
2+
description: Cost function builder. For fitting distributions.
3+
url: https://github.com/scikit-hep/probfit
4+
readme: https://github.com/scikit-hep/probfit/blob/master/README.rst
5+
docs: https://probfit.readthedocs.io/
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: boost-histogram
2+
description: Python bindings for the C++14 Boost::Histogram library.
3+
url: https://github.com/scikit-hep/boost-histogram
4+
readme: https://github.com/scikit-hep/boost-histogram/blob/develop/README.md
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: histbook
2+
description: Versatile, high-performance histogram toolkit for Numpy.
3+
url: https://github.com/scikit-hep/histbook
4+
readme: https://github.com/scikit-hep/histbook/blob/master/README.rst
5+
docs: https://histbook.readthedocs.io/
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: numpythia
2+
description: Interface between Pythia and NumPy.
3+
url: https://github.com/scikit-hep/numpythia
4+
readme: https://github.com/scikit-hep/numpythia/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

_data/projects/interface/pyjet.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: pyjet
2+
description: Interface between FastJet and NumPy.
3+
url: https://github.com/scikit-hep/pyjet
4+
readme: https://github.com/scikit-hep/pyjet/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: formulate
2+
description: Easy conversions between different styles of expressions.
3+
url: https://github.com/scikit-hep/formulate
4+
readme: https://github.com/scikit-hep/formulate/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: root\_numpy
2+
description: Interface between ROOT and NumPy.
3+
url: https://github.com/scikit-hep/root_numpy
4+
readme: https://github.com/scikit-hep/root_numpy/blob/master/README.rst
5+
docs: http://scikit-hep.org/root_numpy/
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: root\_pandas
2+
description: Module for conveniently loading/saving ROOT files as pandas DataFrames.
3+
url: https://github.com/scikit-hep/root_pandas
4+
readme: https://github.com/scikit-hep/root_pandas/blob/master/README.md
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: uproot-methods
2+
description: Pythonic behaviours for non-I/O related ROOT classes.
3+
url: https://github.com/scikit-hep/uproot-methods
4+
readme: https://github.com/scikit-hep/uproot-methods/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: uproot
2+
description: Minimalist ROOT I/O in pure Python and Numpy.
3+
url: https://github.com/scikit-hep/uproot
4+
readme: https://github.com/scikit-hep/uproot/blob/master/README.rst
5+
docs: https://uproot.readthedocs.io/
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: scikit-hep-testdata
2+
description: Common package to provide example files (e.g., ROOT) for testing and developing packages against.
3+
url: https://github.com/scikit-hep/scikit-hep-testdata
4+
readme: https://github.com/scikit-hep/scikit-hep-testdata/blob/master/README.md
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

_data/projects/misc/scikit-hep.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: scikit-hep
2+
description: Toolset of interfaces and tools for Particle Physics. To become a metapackage.
3+
url: https://github.com/scikit-hep/scikit-hep
4+
readme: https://github.com/scikit-hep/scikit-hep/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

_data/projects/ml/NNDrone.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: NNDrone
2+
description: Collection of tools and algorithms to enable conversion of HEP ML to mass usage model.
3+
url: https://github.com/scikit-hep/NNDrone
4+
readme: https://github.com/scikit-hep/NNDrone/blob/master/README.md
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: DecayLanguage
2+
description: Describe and convert particle decays between digital representations.
3+
url: https://github.com/scikit-hep/decaylanguage
4+
readme: https://github.com/scikit-hep/decaylanguage/blob/master/README.md
5+
docs: https://decaylanguage.readthedocs.io/
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

_data/projects/particle/particle.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: Particle
2+
description: PDG particle data and identification codes.
3+
url: https://github.com/scikit-hep/particle
4+
readme: https://github.com/scikit-hep/particle/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

_data/projects/simulation/pyhepmc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: pyhepmc
2+
description: Next generation Python bindings for HepMC3.
3+
url: https://github.com/scikit-hep/pyhepmc
4+
readme: https://github.com/scikit-hep/pyhepmc/blob/master/README.md
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

_data/projects/units/hepunits.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: hepunits
2+
description: Units and constants in the HEP system of units.
3+
url: https://github.com/scikit-hep/hepunits
4+
readme: https://github.com/scikit-hep/hepunits/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: vegascope
2+
description: View Vega/Vega-Lite plots in your web browser from local or remote Python processes.
3+
url: https://github.com/scikit-hep/vegascope
4+
readme: https://github.com/scikit-hep/vegascope/blob/master/README.rst
5+
# docs: <url>
6+
# affiliated: set to true for affiliated packages
7+
# repo: only if different from url

0 commit comments

Comments
 (0)