diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..7152b80 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include README.md LICENSE \ No newline at end of file diff --git a/bayesclass/_version.py b/bayesclass/_version.py index f102a9c..3dc1f76 100644 --- a/bayesclass/_version.py +++ b/bayesclass/_version.py @@ -1 +1 @@ -__version__ = "0.0.1" +__version__ = "0.1.0" diff --git a/pyproject.toml b/pyproject.toml index 97197ce..9fa621d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "setuptools-scm"] +requires = ["setuptools", "setuptools-scm", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools] @@ -8,15 +8,15 @@ license-files = ["LICENSE"] [tool.setuptools.dynamic] version = { attr = "bayesclass.__version__" } -readme = { file = ["README.md"] } [project] name = "bayesclass" description = "A collection of Bayesian Estimators." +readme = "README.md" authors = [ { name = "Ricardo MontaƱana", email = "ricardo.montanana@alu.uclm.es" }, ] -dynamic = ['version', 'readme'] +dynamic = ['version'] dependencies = [ "scipy", "numpy",