diff --git a/CHANGELOG.md b/CHANGELOG.md index a2ea908..c583da1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ - Correcting licence in the pyproject - Unify conversion of coordinate: (x, y) - Convert_file and convert_svg functions are now directly accesible from root +- Fixing the installation of svg2tikz as command line tool ### Deprecated - Gradient are commented for the time being ### Removed diff --git a/docs/moduleguide.rst b/docs/moduleguide.rst index 800847d..f4c0719 100644 --- a/docs/moduleguide.rst +++ b/docs/moduleguide.rst @@ -1,7 +1,7 @@ .. _module-guide: -Module guide +package guide ============ .. module:: svg2tikz diff --git a/pyproject.toml b/pyproject.toml index d302dd7..7beb12b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,3 +28,7 @@ secondary = true [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" + + +[tool.poetry.scripts] +svg2tikz = "svg2tikz.tikz_export:main_cmdline"