-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
63 lines (51 loc) · 1.4 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
53
54
55
56
57
58
59
60
61
62
63
[project]
name = 'tej-tool-api'
description = 'Package to fetch a large quantity of data from tejapi.'
readme = 'README.md'
dynamic = ["version"]
authors = [
{ name = 'tej' },
{ email = '[email protected]' }
]
maintainers = [
{ name = 'tej api Development Team' },
{ email = '[email protected]' }
]
classifiers = [
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Information Analysis',
]
license = { text = 'Apache-2.0'}
requires-python = '>=3.8'
dependencies = [
'dask >= 2024.9.0',
'distributed >= 2024.9.0',
'dask-expr >= 1.1.15',
'pandas >= 2.0.0',
'tejapi >= 0.1.27',
'xlrd >= 1.0.0',
'openpyxl',
'fastparquet',
]
[project.urls]
homepage = 'https://api.tej.com.tw'
repository = 'https://github.com/tejtw/TEJ_TOOL_API'
[build-system]
requires = [
'setuptools>=42.0.0',
"setuptools_scm[toml]>=6.2",
'wheel>=0.36.0',
'oldest-supported-numpy; python_version>="3.8"',
]
build-backend = 'setuptools.build_meta'
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools_scm]
write_to = "TejToolAPI/_version.py"
[tool.setuptools.package-data]
"*" = ["*.json", "*.xlsx"]