-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
61 lines (55 loc) · 1.53 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
[build-system]
# Minimum requirements for the build system to execute.
# See https://github.com/scipy/scipy/pull/12940 for the AIX issue.
# Should sync to [project.optional-dependencies]
requires = [
"Cython~=3.0.5",
"numpy>=2.0.0rc1",
"setuptools"
]
build-backend = "setuptools.build_meta"
[project]
name = 'stock-pandas'
dynamic = ['version']
description='The wrapper of `pandas.DataFrame` with stock statistics and indicators support.'
readme = 'docs/README.md'
authors = [
{ name = 'Kael Zhang', email='[email protected]' }
]
license = {file = 'LICENSE'}
requires-python = '>=3.9'
dependencies = [
"numpy",
"pandas >= 1.0.0"
]
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License'
]
[project.urls]
"Homepage" = "https://github.com/kaelzhang/stock-pandas"
[project.optional-dependencies]
dev = [
"codecov",
"coverage",
"ruff",
"pytest",
"pytest-cov",
"twine",
"Cython~=3.0.5",
"numpy>=2.0.0rc1",
"setuptools"
]
[tool.setuptools.dynamic]
version = {attr = "stock_pandas.__version__"}