From c9b6a01ef3dbc56aa87f5c282f691fabf9f08de2 Mon Sep 17 00:00:00 2001 From: Miika Alonen Date: Sat, 18 Mar 2023 19:32:11 +0200 Subject: [PATCH] Config changes --- MANIFEST.in | 1 + pyproject.toml | 2 +- ziffers/__init__.py | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) 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 *