-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 981 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fintech_webserver"
version = "1.0.0"
requires-python = ">= 3.10"
dependencies = [
"Flask==3.0.3",
"python-dotenv==1.0.1",
"pydantic==2.9.2",
"mypy==1.13.0",
"Flask-WTF==1.2.2",
"pandas==2.2.3",
"pandas-stubs==2.2.3.241126",
"pillow==11.0.0",
"matplotlib==3.9.3",
"mpld3==0.5.10"
]
authors = [
{name = "Soham Jobanputra", email = "sohamjobanputra7@gmail.com"},
]
description = "A webapp with different stock market analysis features made with Flask."
readme = "README.md"
[project.urls]
Repository = "https://github.com/Soham7777777/Fintech.git"
[project.scripts]
fintech = "fintech:cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
app = ["**/static/**", "**/templates/**"]
[tool.mypy]
plugins = "pydantic.mypy"
strict = true
disallow_untyped_defs = true