forked from thinh-vu/vnstock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1019 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 Configuration
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
# Metadata Information
[project]
name = "vnstock3"
version = "0.3.0.3"
description = "A comprehensive and transparent solution for Vietnamese stock market analysis."
authors = [
{ name = "Thinh Vu", email = "[email protected]" },
]
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.0",
"openpyxl",
"pydantic",
"psutil",
"fake_useragent"
]
# Dependency Management
[project.optional-dependencies]
dev = ["flake8"]
test = ["unittest"]
[tool.poetry]
packages = [
{ include = "vnstock3" },
]