Update setup files and version

This commit is contained in:
2022-11-24 12:00:13 +01:00
parent 04612273f4
commit 3b4fc10a3e
3 changed files with 5 additions and 4 deletions

1
MANIFEST.in Normal file
View File

@@ -0,0 +1 @@
include README.md LICENSE

View File

@@ -1 +1 @@
__version__ = "0.0.1" __version__ = "0.1.0"

View File

@@ -1,5 +1,5 @@
[build-system] [build-system]
requires = ["setuptools", "setuptools-scm"] requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[tool.setuptools] [tool.setuptools]
@@ -8,15 +8,15 @@ license-files = ["LICENSE"]
[tool.setuptools.dynamic] [tool.setuptools.dynamic]
version = { attr = "bayesclass.__version__" } version = { attr = "bayesclass.__version__" }
readme = { file = ["README.md"] }
[project] [project]
name = "bayesclass" name = "bayesclass"
description = "A collection of Bayesian Estimators." description = "A collection of Bayesian Estimators."
readme = "README.md"
authors = [ authors = [
{ name = "Ricardo Montañana", email = "ricardo.montanana@alu.uclm.es" }, { name = "Ricardo Montañana", email = "ricardo.montanana@alu.uclm.es" },
] ]
dynamic = ['version', 'readme'] dynamic = ['version']
dependencies = [ dependencies = [
"scipy", "scipy",
"numpy", "numpy",