|
|
@ -18,10 +18,11 @@ |
|
|
|
# You should have received a copy of the GNU Lesser General Public License |
|
|
|
# You should have received a copy of the GNU Lesser General Public License |
|
|
|
# along with pygal. If not, see <http://www.gnu.org/licenses/>. |
|
|
|
# along with pygal. If not, see <http://www.gnu.org/licenses/>. |
|
|
|
from setuptools import setup, find_packages |
|
|
|
from setuptools import setup, find_packages |
|
|
|
|
|
|
|
from pygal._version import __version__ |
|
|
|
|
|
|
|
|
|
|
|
setup( |
|
|
|
setup( |
|
|
|
name="pygal", |
|
|
|
name="pygal", |
|
|
|
version='0.9.18', |
|
|
|
version=__version__, |
|
|
|
description="A python svg graph plotting library", |
|
|
|
description="A python svg graph plotting library", |
|
|
|
author="Kozea", |
|
|
|
author="Kozea", |
|
|
|
url="http://pygal.org/", |
|
|
|
url="http://pygal.org/", |
|
|
@ -31,7 +32,8 @@ setup( |
|
|
|
packages=find_packages(), |
|
|
|
packages=find_packages(), |
|
|
|
provides=['pygal'], |
|
|
|
provides=['pygal'], |
|
|
|
scripts=["pygal_gen.py"], |
|
|
|
scripts=["pygal_gen.py"], |
|
|
|
keywords=["svg", "chart", "graph", "diagram", "plot", "histogram", "kiviat"], |
|
|
|
keywords=[ |
|
|
|
|
|
|
|
"svg", "chart", "graph", "diagram", "plot", "histogram", "kiviat"], |
|
|
|
tests_require=["pytest", "pyquery", "flask"], |
|
|
|
tests_require=["pytest", "pyquery", "flask"], |
|
|
|
package_data={'pygal': ['css/*', 'js/*']}, |
|
|
|
package_data={'pygal': ['css/*', 'js/*']}, |
|
|
|
install_requires=['lxml'], |
|
|
|
install_requires=['lxml'], |
|
|
|