-
-
Notifications
You must be signed in to change notification settings - Fork 144
/
pyproject.toml
52 lines (48 loc) · 1.13 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
46
47
48
49
50
51
52
# Build System Configuration
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
# Metadata Information
[project]
name = "vnstock3"
version = "3.1.0"
description = "A comprehensive and transparent solution for Vietnamese stock market analysis."
authors = [
{ name = "Thinh Vu", email = "vnstock.hq@gmail.com" },
]
license = { file = "LICENSE.md" }
requires-python = ">=3.10"
readme = { file = "README.md", content-type = "text/markdown" }
urls = { Homepage = "https://github.com/thinh-vu/vnstock" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"beautifulsoup4",
"pandas",
"vnai>=0.1.3",
"openpyxl",
"pydantic",
"psutil",
"fake_useragent",
"vnstock_ezchart",
"click",
"seaborn"
]
# Dependency Management
[project.optional-dependencies]
dev = ["flake8"]
docs = ["sphinx", "sphinx_rtd_theme"]
test = ["unittest"]
[tool.poetry]
packages = [
{ include = "vnstock3" },
]
[project.scripts]
vnstock = "vnstock3.common.cli:cli"