diff --git a/causalpy/version.py b/causalpy/version.py index 311f216e..3dc1f76b 100644 --- a/causalpy/version.py +++ b/causalpy/version.py @@ -1 +1 @@ -__version__ = "0.0.14" +__version__ = "0.1.0" diff --git a/docs/source/_static/classes.png b/docs/source/_static/classes.png index 66096245..cfd4b8f3 100644 Binary files a/docs/source/_static/classes.png and b/docs/source/_static/classes.png differ diff --git a/pyproject.toml b/pyproject.toml index 2f4c8e65..2de41c98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,10 +13,10 @@ exclude = ["causalpy.test*", "docs*"] [project] name = "CausalPy" -version = "0.0.14" +version = "0.1.0" description = "Causal inference for quasi-experiments in Python" readme = "README.md" -license = {file = "LICENSE"} +license = { file = "LICENSE" } authors = [{ name = "Ben Vincent", email = "ben.vincent@pymc-labs.io" }] requires-python = ">=3.8" @@ -48,13 +48,9 @@ dependencies = [ # # Similar to `dependencies` above, these must be valid existing projects. [project.optional-dependencies] -dev = [ - "pathlib", - "pre-commit", - "twine", - "interrogate", - ] -docs = ["ipykernel", +dev = ["pathlib", "pre-commit", "twine", "interrogate"] +docs = [ + "ipykernel", "linkify-it-py", "myst-nb", "pathlib", @@ -65,19 +61,17 @@ docs = ["ipykernel", "sphinx-rtd-theme", "statsmodels", "sphinxcontrib-bibtex", - ] -lint = ["black", +] +lint = [ + "black", "flake8", "interrogate", "isort", "nbqa", "pre-commit", - "pylint" - ] -test = [ - "pytest", - "pytest-cov", - ] + "pylint", +] +test = ["pytest", "pytest-cov"] [metadata] description-file = 'README.md' @@ -107,7 +101,7 @@ testpaths = "causalpy/tests" markers = [ "integration: mark as an integration test.", "slow: mark test as slow.", - ] +] [tool.interrogate] ignore-init-method = true