-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (41 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (41 loc) · 1.32 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "finshare"
version = "1.0.8"
description = "A professional financial data fetching toolkit for Python"
readme = "README.md"
authors = [
{name = "Meepo Team", email = "echo_now@163.com"}
]
license = {text = "MIT"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["quantitative", "trading", "data", "finance", "stock", "quant"]
dependencies = [
"numpy>=1.20.0",
"pandas>=1.3.0",
"baostock>=0.8.9",
"pytdx>=1.72",
"pydantic>=2.0.0",
"loguru>=0.7.0",
"requests>=2.31.0",
"yfinance>=0.2.0",
]
[project.urls]
Homepage = "https://meepoquant.com"
Repository = "https://github.com/finvfamily/finshare"
"Bug Tracker" = "https://github.com/finvfamily/finshare/issues"