Change build system to Poetry (#1)

parent d3e95312
This diff is collapsed.
[tool.poetry]
name = "respir-os"
version = "0.1.0"
description = "Fully-functional ventilator system for the Raspberry Pi."
authors = [
"José Sánchez <josesanchez.oncort@gmail.com>",
"Ismael Martel <ismael.martel@gmail.com>",
"Carlos García <carlos.garcia@iesppg.net>",
"Ladislao Martínez <ladislao.m.garcia@gmail.com>",
"Jaime Lozano <jaimelozano@ugr.es>",
"Elio Valenzuela <elio@ugr.es>",
"Abel Cano <abelcano@ugr.es>"
]
maintainers = [
"Víctor Vázquez <victorvazrod@ugr.es>",
"Carlos Megías <narg@ugr.es>"
]
license = "LGPL-3.0-or-later"
repository = "https://ohwr.org/project/respir-os"
documentation = "https://ohwr.org/project/respir-os/wikis/home"
readme = "README.md"
keywords = [
"Healthcare",
"Raspberry Pi",
"Ventilator"
]
classifiers = [
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Healthcare Industry",
"Natural Language :: Spanish",
"Operating System :: Unix"
]
packages = [
{ include = "respir_os" }
]
[tool.poetry.dependencies]
python = "^3.7"
Flask = "^2.0.1"
Flask-SocketIO = "^5.1.0"
pigpio = "^1.78"
PySimpleGUI = "^4.45.0"
matplotlib = "^3.4.2"
numpy = "^1.21.0"
gevent = "^21.1.2"
pyzmq = "^22.1.0"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
[tool.poetry.scripts]
respir-os = "respir_os.__main__:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
appdirs==1.4.4
bidict==0.21.2
black==20.8b1
click==7.1.2
cycler==0.10.0
Flask==1.1.2
Flask-SocketIO==5.0.1
gevent==21.1.2
greenlet==1.0.0
itsdangerous==1.1.0
Jinja2==2.11.3
kiwisolver==1.3.1
MarkupSafe==1.1.1
matplotlib==3.4.1
mypy-extensions==0.4.3
numpy==1.20.2
pathspec==0.8.1
pigpio==1.78
Pillow==8.2.0
pyparsing==2.4.7
PySimpleGUI==4.38.0
python-dateutil==2.8.1
python-engineio==4.0.1
python-socketio==5.1.0
pyzmq==22.0.3
regex==2021.4.4
six==1.15.0
toml==0.10.2
typed-ast==1.4.2
typing-extensions==3.7.4.3
Werkzeug==1.0.1
zope.event==4.5.0
zope.interface==5.3.0
[metadata]
name = respir-os
version = 0.1.0
description = Fully-functional ventilator system for the Raspberry Pi
long_description = file: README.md
classifiers =
Programming Language :: Python :: 3.7
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Intended Audience :: Healthcare Industry
Natural Language :: Spanish
Operating System :: Unix
[options]
packages = find:
python_requires = >=3.7
install_requires =
flask
flask-socketio
pigpio
pysimplegui
matplotlib
numpy
gevent
pyzmq
[options.entry_points]
console_scripts =
respir-os = respir_os.__main__:main
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment