-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 934 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
[tool.poetry]
name = "cs-ii-isp-automatic-differentiation"
version = "0.1.0"
description = "Our CS 2 ISP project!"
authors = ["Krishna Shah <kshahusa@gmail.com>", "Aryan Verma <aryanjverma2@gmail.com>", "Brennan Coil <nerblioc@outlook.com>"]
readme = "README.md"
packages = [{include = "CalCoolUs"}]
[tool.poetry.dependencies]
python = "^3.10"
networkx = "^3.1"
matplotlib = "^3.8.0"
pydot = "^1.4.2"
setuptools = "^68.2.2"
icecream = "^2.1.3"
flask = "^3.0.0"
sympy = "^1.12"
tk = "^0.1.0"
python-dotenv = "^1.0.1"
pylatexenc = "^2.10"
latex2sympy2 = "^1.9.1"
opencv-python-headless = "^4.9.0.80"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
coverage = {extras = ["toml"], version = "^7.3.2"}
flake8 = "^6.1.0"
flake8-bugbear = "^23.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 100