-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "datacore"
version = "1.0.0"
description = "Python client for the Datacore API (https://datacore.vn). Imported as `datacore`."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "DataCore Vietnam", email = "support@datacore.vn" },
]
keywords = ["datacore", "api", "client", "vietnam", "financial-data"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.31.0",
"pandas>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
polars = ["polars>=1.0.0"]
all = ["polars>=1.0.0"]
dev = [
"polars>=1.0.0",
"build>=1.0.0",
"twine>=5.0.0",
"ruff>=0.5.0",
"nbformat>=5.9.0",
"nbclient>=0.9.0",
"ipykernel>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/DataCore-VietNam/datacore-python"
Repository = "https://github.com/DataCore-VietNam/datacore-python"
Issues = "https://github.com/DataCore-VietNam/datacore-python/issues"
[tool.setuptools]
packages = ["datacore"]
[tool.setuptools.package-data]
datacore = ["py.typed"]