|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=42", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "vnstock" |
| 7 | +version = "3.2.7" |
| 8 | +description = "A beginner-friendly yet powerful Python toolkit for financial analysis and automation — built to make modern investing accessible to everyone" |
| 9 | +readme = "README.md" |
| 10 | +authors = [ |
| 11 | + { name = "Thinh Vu", email = "[email protected]" }, |
| 12 | +] |
| 13 | +license = { text = "Custom: Personal, research, non-commercial; contact [email protected] for other use" } |
| 14 | +requires-python = ">=3.10" |
| 15 | +keywords = ["vnstock", "finance", "vietnam", "stock market", "analysis", "API"] |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 5 - Production/Stable", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Intended Audience :: Education", |
| 20 | + "Intended Audience :: Financial and Insurance Industry", |
| 21 | + "Topic :: Software Development :: Libraries", |
| 22 | + "Topic :: Office/Business :: Financial :: Investment", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Operating System :: OS Independent", |
| 28 | + "License :: Other/Proprietary License", |
| 29 | + "Natural Language :: English", |
| 30 | + "Natural Language :: Vietnamese", |
| 31 | +] |
| 32 | +dependencies = [ |
| 33 | + "requests", |
| 34 | + "beautifulsoup4", |
| 35 | + "pandas", |
| 36 | + "seaborn", |
| 37 | + "openpyxl", |
| 38 | + "pydantic", |
| 39 | + "psutil", |
| 40 | + "fake_useragent", |
| 41 | + "click", |
| 42 | + "packaging>=20.0", |
| 43 | + "importlib-metadata>=1.0", |
| 44 | + "tenacity", |
| 45 | + "vnai>=2.1.7" |
| 46 | +] |
| 47 | + |
| 48 | +[project.optional-dependencies] |
| 49 | +dev = ["flake8"] |
| 50 | +docs = ["sphinx", "sphinx_rtd_theme"] |
| 51 | +test = ["unittest"] |
| 52 | + |
| 53 | +[project.urls] |
| 54 | +Documentation = "https://github.com/thinh-vu/vnstock" |
| 55 | +Source = "https://github.com/thinh-vu/vnstock" |
| 56 | +IssueTracker = "https://github.com/thinh-vu/vnstock/issues" |
| 57 | + |
| 58 | +[tool.setuptools] |
| 59 | +include-package-data = true |
| 60 | +packages = ["vnstock"] |
| 61 | + |
| 62 | +[tool.setuptools.package-data] |
| 63 | +vnstock = ["docs/*.txt", "docs/*.csv"] |
| 64 | + |
| 65 | +[project.scripts] |
| 66 | +vnstock = "vnstock.common.cli:cli" |
0 commit comments