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
9b4b240
commit 6398f26
Showing
14 changed files
with
37 additions
and
40 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
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ class DisabledTestCommand(Command): | |
|
||
def __init__(self, dist): | ||
raise RuntimeError( | ||
"test command not supported on svg.charts." | ||
"test command not supported on pygal." | ||
" Use setup.py nosetests instead") | ||
|
||
_this_dir = os.path.dirname(__file__) | ||
|
@@ -25,16 +25,16 @@ def __init__(self, dist): | |
else ['python-dateutil>=2.0']) | ||
|
||
setup_params = dict( | ||
name="svg.charts", | ||
name="pygal", | ||
use_hg_version=True, | ||
description="Python SVG Charting Library", | ||
description="Python svg graph abstract layer", | ||
long_description=_long_description, | ||
author="Jason R. Coombs", | ||
author_email="[email protected]", | ||
url="http://svg-charts.sourceforge.net", | ||
author="Jason R. Coombs, Kozea", | ||
author_email="[email protected], [email protected]", | ||
url="https://github.com/Kozea/pygal", | ||
packages=find_packages(), | ||
zip_safe=True, | ||
namespace_packages=['svg'], | ||
namespace_packages=['pygal'], | ||
include_package_data=True, | ||
install_requires=[ | ||
'cssutils>=0.9.8a3', | ||
|
@@ -57,9 +57,6 @@ def __init__(self, dist): | |
cmdclass=dict( | ||
test=DisabledTestCommand, | ||
), | ||
setup_requires=[ | ||
'hgtools', | ||
], | ||
use_2to3=True, | ||
) | ||
|
||
|
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
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,7 +1,7 @@ | ||
/* | ||
$Id$ | ||
Base styles for svg.charts.Graph | ||
Base styles for pygal.Graph | ||
*/ | ||
|
||
.svgBackground{ | ||
|
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
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
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
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
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,4 +1,4 @@ | ||
from svg.charts import time_series | ||
from pygal import time_series | ||
|
||
|
||
def test_field_width(): | ||
|