Skip to content

Commit

Permalink
improve distribution to PyPI
Browse files Browse the repository at this point in the history
Now svg files, readme, unit tests, and license included in PyPI dis
  • Loading branch information
mathandy committed Oct 29, 2016
1 parent a42484f commit 08e8dc7
Show file tree
Hide file tree
Showing 28 changed files with 4,387 additions and 15 deletions.
12 changes: 0 additions & 12 deletions MANIFEST

This file was deleted.

2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include *.svg LICENSE*
recursive-include test *.svg
19 changes: 19 additions & 0 deletions build/lib/svgpathtools/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from .bezier import (bezier_point, bezier2polynomial,
polynomial2bezier, split_bezier,
bezier_bounding_box, bezier_intersections,
bezier_by_line_intersections)
from .path import (Path, Line, QuadraticBezier, CubicBezier, Arc,
bezier_segment, is_bezier_segment, is_path_segment,
is_bezier_path, concatpaths, poly2bez, bpoints2bezier,
closest_point_in_path, farthest_point_in_path,
path_encloses_pt, bbox2path)
from .parser import parse_path
from .paths2svg import disvg, wsvg
from .polytools import polyroots, polyroots01, rational_limit, real, imag
from .misctools import hex2rgb, rgb2hex
from .smoothing import smoothed_path, smoothed_joint, is_differentiable, kinks

try:
from .svg2paths import svg2paths, svg2paths2
except ImportError:
pass
Loading

0 comments on commit 08e8dc7

Please sign in to comment.