Browse Source

Add MANIFEST.in (seriously ?)

pull/8/head
Florian Mounier 13 years ago
parent
commit
5c4d15be9e
  1. 1
      .gitignore
  2. 1
      MANIFEST.in
  3. 24
      README
  4. 1
      README.md
  5. 1
      pygal/__init__.py
  6. 3
      relauncher
  7. 8
      setup.py

1
.gitignore vendored

@ -1,2 +1,3 @@
*.svg
.livereload
dist

1
MANIFEST.in

@ -0,0 +1 @@
include pygal/css/*.css

24
README

@ -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/>.

1
README.md

@ -0,0 +1 @@
README

1
pygal/__init__.py

@ -16,6 +16,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with pygal. If not, see <http://www.gnu.org/licenses/>.
__version__ = '0.9.2'
from collections import namedtuple
from pygal.graph.bar import Bar

3
relauncher

@ -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/&

8
setup.py

@ -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="florian.mounier@kozea.fr",
license="GNU LGPL v3",
platforms="Any",
packages=['pygal'],
packages=find_packages(),
provides=['pygal'],
keywords=["svg", "graph", "diagram", "plot", "histogram", "kiviat"],
tests_require=["pytest", "flask"],

Loading…
Cancel
Save