forked from tejtw/TEJ_TOOL_API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (57 loc) · 1.59 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
64
65
66
67
68
69
[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 = 'tej@tej.com.tw' }
]
maintainers = [
{ name = 'tej api Development Team' },
{ email = 'tej@tej.com.tw' }
]
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'}
[tool.poetry.dependencies]
# requires-python = '>=3.8'
# dependencies = [
# 'dask >= 2022.4.1',
# 'pandas >= 1.2.5, <= 1.5.3',
# 'tejapi >= 0.1.27',
# 'xlrd >= 1.0.0',
# 'openpyxl',
# 'fastparquet <=0.8.3',
# ]
python = ">=3.8"
dask = "^2022.4.1"
pandas = ">= 1.2.5"
tejapi = "^0.1.27"
xlrd = "^1.0.0"
openpyxl = {version = "*", optional = true}
fastparquet = {version = "*", optional = true}
[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"]