-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
[tool.poetry]
name = "scalewiz"
version = "0.5.13"
description = "A graphical user interface for chemical performance testing designed to work with Teledyne SSI MX-class HPLC pumps."
readme = "README.rst"
license = "GPL-3.0"
authors = ["Alex Whittington <[email protected]>"]
repository = "https://github.com/pct-code/scalewiz"
packages = [
{include = "scalewiz"}
]
include = [
{ path = "scalewiz/components/*.ico" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: System :: Hardware :: Universal Serial Bus (USB)",
"Topic :: Terminals :: Serial",
"Framework :: Matplotlib",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
[tool.poetry.dependencies]
python = "^3.9 || ^3.10"
matplotlib = "^3.4.2."
tkcalendar = "^1.6.1"
pandas = "^1.2.2"
py-hplc = "^1.0.1"
tomlkit = "^0.7.0"
appdirs = "^1.4.4"
[tool.poetry.scripts]
scalewiz = "scalewiz.__main__:main"
[tool.poetry.dev-dependencies]
rope = "^0.18.0"
readme-renderer = "^29.0"
pre-commit = "^2.12.1"
black = {version = "^21.7b0", allow-prereleases = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"