-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
executable file
·45 lines (37 loc) · 1010 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
38
39
40
41
42
43
44
45
[tool.poetry]
name = "kipet"
version = "1.0.3"
description = "An all-in-one tool for fitting kinetic models using spectral and other state data"
authors = ["Kevin McBride <kevin.w.mcbride.86@gmail.com>"]
maintainers = ["Kevin McBride <kevin.w.mcbride.86@gmail.com>"]
readme = "README.md"
repository = "https://github.com/kwmcbride/kipet"
keywords = ["optimization", "scientific", "parameter", "reaction", "spectral"]
license="GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.2.2"
numpy = "^1.20.1"
scipy = "^1.6.0"
plotly = "^4.14.3"
Pint = "^0.16.1"
matplotlib = "^3.3.4"
PyYAML = "^5.4.1"
Pyomo = "^5.7.3"
attrs = "^20.3.0"
six = "^1.15.0"
scikit-learn = "^0.24.1"
Sphinx = "^4.0.1"
kaleido = "0.2.1"
Jinja2 = "^3.0.1"
pytexit = "^0.3.4"
Pygments = "^2.9.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
spyder = "^4.2.2"
isort = "^5.8.0"
mypy = "^0.812"
sphinx-rtd-theme = "^0.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"