From 4b64869baf1ac15567f78a8a61993255e13dc6cf Mon Sep 17 00:00:00 2001 From: Michael Boyle Date: Fri, 14 Aug 2020 15:59:33 -0400 Subject: [PATCH] Pretty up pyproject.toml --- pyproject.toml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 333170c..83768b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,18 +1,9 @@ -[tool.black] -line-length = 120 -target-version = ['py36'] - -[tool.pytest.ini_options] -minversion = "6.0" -norecursedirs = ".* build dist *.egg-info install ENV" -addopts = "-v --tb=short --doctest-glob=''" - [tool.poetry] name = "quaternionic" -version = "0.0.1a4" -license = "MIT" +version = "0.1.0-alpha.0" description = "Interpret numpy arrays as quaternion arrays with numba acceleration" readme = "README.md" +license = "MIT" authors = ["Michael Boyle "] homepage = "https://github.com/moble/quaternionic" @@ -21,10 +12,20 @@ python = "^3.6" numpy = "^1.13" scipy = "^1.0" numba = "^0.50" +importlib-metadata = {version = "^1.0", python = "<3.8"} [tool.poetry.dev-dependencies] pytest = "^6.0" +[tool.black] +line-length = 120 +target-version = ['py36'] + +[tool.pytest.ini_options] +minversion = "6.0" +norecursedirs = ".* build dist *.egg-info install ENV" +addopts = "-v --tb=short --doctest-glob=''" + [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api"