forked from Kozea/pygal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c82bf2
commit 5c4d15b
Showing
7 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.svg | ||
.livereload | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include pygal/css/*.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Pygal | ||
===== | ||
|
||
A python svg graph plotting library | ||
|
||
|
||
License | ||
------- | ||
|
||
Copyright © 2012 Kozea | ||
LGPLv3: | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
README |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#!/bin/zsh | ||
livereload& | ||
reload ./out.py **/*.py& | ||
reload ./demo/simple_test.py **/*.py& | ||
python -m SimpleHTTPServer 1515& | ||
sleep 1 | ||
chromium http://localhost:1515/& |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,18 +17,18 @@ | |
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with pygal. If not, see <http://www.gnu.org/licenses/>. | ||
from setuptools import setup | ||
|
||
from setuptools import setup, find_packages | ||
import pygal | ||
|
||
setup( | ||
name="pygal", | ||
version='0.9', | ||
version=pygal.__version__, | ||
description="A python svg graph plotting library", | ||
author="Kozea", | ||
author_email="[email protected]", | ||
license="GNU LGPL v3", | ||
platforms="Any", | ||
packages=['pygal'], | ||
packages=find_packages(), | ||
provides=['pygal'], | ||
keywords=["svg", "graph", "diagram", "plot", "histogram", "kiviat"], | ||
tests_require=["pytest", "flask"], | ||
|