-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (31 loc) · 913 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "sramplatform"
version = "0.1.0"
description = ""
authors = ["Sergio Vinagrero <[email protected]>"]
homepage = "https://servinagrero.github.io/SRAMPlatform"
repository = "https://github.com/servinagrero/SRAMPlatform"
license = "GPL-2.0"
include = [
"LICENSE",
]
packages = [{include = "sramplatform"}]
keywords = ["sram", "microcontroller", "automation"]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GPL 2.0 License",
"Programming Language :: Python",
]
[tool.poetry.dependencies]
python = "^3.8"
pika = "^1.3.0"
SQLAlchemy = "^1.4.41"
pyserial = "^3.5"
yagmail = {version = "*", extras = ["all"], optional = true}
pyTelegramBotAPI = {version = "*", optional = true}
[tool.poetry.extras]
loggers = ["yagmail", "pyTelegramBotAPI"]
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"