diff --git a/MANIFEST.in b/MANIFEST.in index c59580f..bd3889a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include ziffers/* +include ziffers/classes/* include ziffers/spec/* global-include *.lark diff --git a/pyproject.toml b/pyproject.toml index 9a8949c..548d192 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "python-ziffers" +name = "ziffers" version = "0.1.0" description = "Port of the Ziffers numerical notation for Python" authors = [ diff --git a/ziffers/__init__.py b/ziffers/__init__.py index ca44a78..9041f05 100644 --- a/ziffers/__init__.py +++ b/ziffers/__init__.py @@ -5,4 +5,5 @@ from .defaults import * from .scale import * from .converters import * from .spec import * -from .classes import * \ No newline at end of file +from .classes import * +from .generators import *