spotfm/pyproject.toml

25 lines
687 B
TOML
Raw Normal View History

[tool.poetry]
name = "spotfm"
version = "1.0.0"
description = "Interface functions for spotframework and fmframework. Maths functions among others"
authors = ["andy <andy@sarsoo.xyz>"]
repository = "https://github.com/Sarsoo/spotfm"
[tool.poetry.dependencies]
python = "^3.8"
2022-11-11 07:09:42 +00:00
spotframework = { git = "https://github.com/Sarsoo/spotframework.git", branch = "master" }
fmframework = { git = "https://github.com/Sarsoo/pyfmframework.git", branch = "master" }
[tool.poetry.dev-dependencies]
2021-02-07 15:03:26 +00:00
pylint = "^2.5.3"
flake8 = "^3.8.4"
[tool.poetry.scripts]
test = 'scripts:test'
testv = 'scripts:testv'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"