diff --git a/pyproject.toml b/pyproject.toml index 16fe7b8..d7b56f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,37 +5,23 @@ build-backend = "setuptools.build_meta" [project] name = "aind-behavior-video-transformation" description = "Generated from aind-library-template" -license = {text = "MIT"} +license = { text = "MIT" } requires-python = ">=3.8" -authors = [ - {name = "Allen Institute for Neural Dynamics"} -] -classifiers = [ - "Programming Language :: Python :: 3" -] +authors = [{ name = "Allen Institute for Neural Dynamics" }] +classifiers = ["Programming Language :: Python :: 3"] readme = "README.md" dynamic = ["version"] -dependencies = [ - 'aind-data-transformation>=0.0.18' -] +dependencies = ['aind-data-transformation>=0.0.18'] [project.optional-dependencies] -dev = [ - 'black', - 'coverage', - 'flake8', - 'interrogate', - 'isort', - 'Sphinx', - 'furo' -] +dev = ['black', 'coverage', 'flake8', 'interrogate', 'isort', 'Sphinx', 'furo'] [tool.setuptools.packages.find] where = ["src"] [tool.setuptools.dynamic] -version = {attr = "aind_behavior_video_transformation.__version__"} +version = { attr = "aind_behavior_video_transformation.__version__" } [tool.black] line-length = 79 @@ -60,14 +46,14 @@ exclude = ''' [tool.coverage.run] omit = ["*__init__*"] -source = ["aind_behavior_video_transformation", "tests"] +source = ["aind_behavior_video_transformation"] [tool.coverage.report] exclude_lines = [ "if __name__ == .__main__.:", "from", "import", - "pragma: no cover" + "pragma: no cover", ] fail_under = 100