migrated to poetry dependency management
This commit is contained in:
parent
c9d4840b64
commit
45646ebce2
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,5 +5,6 @@ __pycache__
|
|||||||
.idea
|
.idea
|
||||||
.spot
|
.spot
|
||||||
.fm
|
.fm
|
||||||
|
poetry.lock
|
||||||
|
|
||||||
scratch.py
|
scratch.py
|
19
pyproject.toml
Normal file
19
pyproject.toml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
[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"
|
||||||
|
|
||||||
|
spotframework = { path = "../spotframework" }
|
||||||
|
fmframework = { path = "../fmframework" }
|
||||||
|
|
||||||
|
[tool.poetry.dev-dependencies]
|
||||||
|
pylint = "2.5.3"
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core>=1.0.0"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
Loading…
Reference in New Issue
Block a user