46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "openflexure_microscope"
|
|
version = "2.0.0-beta.2"
|
|
description = "Python module, and Flask-based web API, to run the OpenFlexure Microscope."
|
|
|
|
authors = [
|
|
"Joel Collins <j.collins@bath.ac.uk>",
|
|
"Richard Bowman <r.w.bowman@bath.ac.uk",
|
|
"Julian Stirling <j.stirling@bath.ac.uk>"
|
|
]
|
|
|
|
readme = 'README.md'
|
|
|
|
repository = "https://gitlab.com/openflexure/openflexure-microscope-server"
|
|
homepage = "https://www.openflexure.org"
|
|
|
|
keywords = ['raspberry pi', 'arduino', 'microscope']
|
|
|
|
license = "GPL-3.0"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.6"
|
|
Flask = "^1.0"
|
|
pyyaml = "^3.13"
|
|
numpy = "^1.17.0"
|
|
Pillow = "^5.4"
|
|
scipy = "1.3.0" # Exact version until we can guarantee a wheel
|
|
|
|
picamera = { git = "https://github.com/rwb27/picamera.git", branch = "lens-shading", optional = true } # Lens shading requires >1.14 or RWB fork, lens-shading branch.
|
|
"RPi.GPIO" = { version = "^0.6.5", optional = true }
|
|
pyserial = "^3.4" # Used for sangaboard (basic_serial_instrument) until we move to sangaboard pip library
|
|
|
|
labthings = { git = "https://github.com/labthings/python-labthings.git", branch = "master"}
|
|
|
|
[tool.poetry.extras]
|
|
rpi = ["picamera", "RPi.GPIO"]
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
sphinxcontrib-httpdomain = "^1.7"
|
|
rope = "^0.14.0"
|
|
pylint = "^2.3"
|
|
black = {version = "^18.3-alpha.0",allows-prereleases = true}
|