Skip to content

Commit

Permalink
Pretty up pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
moble committed Aug 14, 2020
1 parent 73bc560 commit 4b64869
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <michael.oliver.boyle@gmail.com>"]
homepage = "https://github.com/moble/quaternionic"

Expand All @@ -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"

0 comments on commit 4b64869

Please sign in to comment.