diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 412eeda..0000000
--- a/.gitattributes
+++ /dev/null
@@ -1,22 +0,0 @@
-# Auto detect text files and perform LF normalization
-* text=auto
-
-# Custom for Visual Studio
-*.cs diff=csharp
-*.sln merge=union
-*.csproj merge=union
-*.vbproj merge=union
-*.fsproj merge=union
-*.dbproj merge=union
-
-# Standard to msysgit
-*.doc diff=astextplain
-*.DOC diff=astextplain
-*.docx diff=astextplain
-*.DOCX diff=astextplain
-*.dot diff=astextplain
-*.DOT diff=astextplain
-*.pdf diff=astextplain
-*.PDF diff=astextplain
-*.rtf diff=astextplain
-*.RTF diff=astextplain
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index c3355a6..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,170 +0,0 @@
-#################
-## khz
-#################
-*.priv
-private.csv
-
-
-#################
-## Eclipse
-#################
-
-*.pydevproject
-.project
-.metadata
-bin/
-tmp/
-*.tmp
-*.bak
-*.swp
-*~.nib
-local.properties
-.classpath
-.settings/
-.loadpath
-
-# External tool builders
-.externalToolBuilders/
-
-# Locally stored "Eclipse launch configurations"
-*.launch
-
-# CDT-specific
-.cproject
-
-# PDT-specific
-.buildpath
-
-
-#################
-## Visual Studio
-#################
-
-## Ignore Visual Studio temporary files, build results, and
-## files generated by popular Visual Studio add-ons.
-
-# User-specific files
-*.suo
-*.user
-*.sln.docstates
-
-# Build results
-[Dd]ebug/
-[Rr]elease/
-*_i.c
-*_p.c
-*.ilk
-*.meta
-*.obj
-*.pch
-*.pdb
-*.pgc
-*.pgd
-*.rsp
-*.sbr
-*.tlb
-*.tli
-*.tlh
-*.tmp
-*.vspscc
-.builds
-*.dotCover
-
-## TODO: If you have NuGet Package Restore enabled, uncomment this
-#packages/
-
-# Visual C++ cache files
-ipch/
-*.aps
-*.ncb
-*.opensdf
-*.sdf
-
-# Visual Studio profiler
-*.psess
-*.vsp
-
-# ReSharper is a .NET coding add-in
-_ReSharper*
-
-# Installshield output folder
-[Ee]xpress
-
-# DocProject is a documentation generator add-in
-DocProject/buildhelp/
-DocProject/Help/*.HxT
-DocProject/Help/*.HxC
-DocProject/Help/*.hhc
-DocProject/Help/*.hhk
-DocProject/Help/*.hhp
-DocProject/Help/Html2
-DocProject/Help/html
-
-# Click-Once directory
-publish
-
-# Others
-[Bb]in
-[Oo]bj
-sql
-TestResults
-*.Cache
-ClientBin
-stylecop.*
-~$*
-*.dbmdl
-Generated_Code #added for RIA/Silverlight projects
-
-# Backup & report files from converting an old project file to a newer
-# Visual Studio version. Backup files are not needed, because we have git ;-)
-_UpgradeReport_Files/
-Backup*/
-UpgradeLog*.XML
-
-
-
-############
-## Windows
-############
-
-# Windows image file caches
-Thumbs.db
-
-# Folder config file
-Desktop.ini
-
-
-#############
-## Python
-#############
-
-*.py[co]
-
-# Packages
-*.egg
-*.egg-info
-dist
-build
-eggs
-parts
-bin
-var
-sdist
-develop-eggs
-.installed.cfg
-
-# Installer logs
-pip-log.txt
-
-# Unit test / coverage reports
-.coverage
-.tox
-
-#Translations
-*.mo
-
-#Mr Developer
-.mr.developer.cfg
-
-# Mac crap
-.DS_Store
diff --git a/README.txt b/README.txt
deleted file mode 100644
index 8c13cdf..0000000
--- a/README.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-## smart_chart:
-
- smart chart is a small set of python tools
- to automatically generate (nice) charts from
- csv File Data using the google chart tools.
-
-
-### 1st tool: create_bubble_chart.py
- function: generates a bubble chart from csv input.
- configurable through a config file (see: bubble_chart_config.py)
- Output graphs can be seen in the github wiki.
-
-### 2nd tool: create_bar_chart.py
- function: generates a bar chart from csv input.
- configurable through a config file
- Output graphs can be seen in the girhub wiki.
-
-### 1st tool: create_tree_chart.py
- function: generates a tree chart from csv input.
- configurable through a config file
- Output graphs can be seen in the github wiki.
-
-### Test it
- A csv sample input and a config file is included, so
- you can just checkout the source and test it right away.
-
-### prerequisites
- * python 2.x
-
-### All code and data are processed and rendered in the browser. No data is sent to any server.
-
-### comments / questions: khz@tzi.org
-
-
diff --git a/bar_charts/bar_chart_config.py b/bar_charts/bar_chart_config.py
deleted file mode 100644
index 49a76fe..0000000
--- a/bar_charts/bar_chart_config.py
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# options for chart generation
-# khz (2.7.2012); khz@tzi.org
-
-PARSE_OPTIONS = {
- "STRIPCHARS" : " \n\t",
- "SPLITCHARS" : ",",
- "NUM_COLS" : "4"
-}
-# chart options:
-# CHART_TYPE : [SERIES || GRADIENT]
-# GRAD_COLORS : only used when chart_type is GRADIENT.
-CHART_OPTIONS = {
- "TITLE_CHART" : "A beautiful Chart made by smart_chart and python",
- "TITLE_XAXIS" : "Importance",
- "TITLE_YAXIS" : "Costs",
- "FONTSIZE" : "11",
- "OUTPUT_DIR" : "./",
- "OUT_FILE" : "barchart.html",
- "BAR_TYPE" : "line",
- "TOGGLE_BUTTON_TEXT" : "toggle me",
- "TOGGLE1_TEXT" : "1st view",
- "TOGGLE2_TEXT" : "2nd view",
- "WIDTH" : "650",
- "HEIGHT" : "375"
-}
-#
-# 1st parameter defines the colum to convert
-# 2nd parameter defines the goal datatype. Can Be STRING,INT, FLOAT so far.
-# By Default, any Column is handled as STRING as is, if nothing else is
-# specified here.
-#
-COLUMN_TYPES = {
- "1" : "STRING",
- "2" : "INT",
- "3" : "INT",
- "4" : "INT"
-}
\ No newline at end of file
diff --git a/bar_charts/bar_chart_template.py b/bar_charts/bar_chart_template.py
deleted file mode 100644
index b77f2ef..0000000
--- a/bar_charts/bar_chart_template.py
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
+
+Welcome to GitHub Pages.
+
+This automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new gh-pages branch locally. If you’re using GitHub Desktop, simply sync your repository and you’ll see the new branch.
+
+
+Designer Templates
+
+We’ve crafted some handsome templates for you to use. Go ahead and click 'Continue to layouts' to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved.
+
+
+Creating pages manually
+
+If you prefer to not use the automatic generator, push a branch named gh-pages to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.
+
+
+Authors and Contributors
+
+You can @mention a GitHub username to generate a link to their profile. The resulting <a> element will link to the contributor’s GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.
+
+
+Support or Contact
+
+Having trouble with Pages? Check out our documentation or contact support and we’ll help you sort it out.
+
+
+@tweetchaz_test it's your move. Reply with: #move ab-xy #GAME_ID bb1bd423-a42b-4f93-b359-2368d2471e5b pic.twitter.com/eQLSzCQA1a
— twee chee (@tweetchazzer) 30. Dezember 2015
+
+
+
+
+
+
+
+
+
+
+
diff --git a/params.json b/params.json
new file mode 100644
index 0000000..fbeeaf9
--- /dev/null
+++ b/params.json
@@ -0,0 +1 @@
+{"name":"Smart chart","tagline":"small python tools to generate hmlt/javascript based web-charts from csv files. Using the google chart tools.","body":"### Welcome to GitHub Pages.\r\nThis automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here [using GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/), select a template crafted by a designer, and publish. After your page is generated, you can check out the new `gh-pages` branch locally. If you’re using GitHub Desktop, simply sync your repository and you’ll see the new branch.\r\n\r\n### Designer Templates\r\nWe’ve crafted some handsome templates for you to use. Go ahead and click 'Continue to layouts' to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved.\r\n\r\n### Creating pages manually\r\nIf you prefer to not use the automatic generator, push a branch named `gh-pages` to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.\r\n\r\n### Authors and Contributors\r\nYou can @mention a GitHub username to generate a link to their profile. The resulting `