-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
76 lines (68 loc) · 1.8 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
70
71
72
73
74
75
76
[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"
]
build-backend = "setuptools.build_meta"
[project]
name = 'stock-pandas'
dynamic = ['version']
description='The production-ready subclass of `pandas.DataFrame` to support stock statistics and indicators.'
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 :: MIT 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",
"mypy",
"build"
]
[tool.setuptools.dynamic]
version = {attr = "stock_pandas.__version__"}
[tool.setuptools.package-data]
stock_pandas = [
"py.typed"
]
[tool.mypy]
warn_return_any = true
ignore_missing_imports = true
no_implicit_optional = true
strict_optional = true
disable_error_code = ['return-value', 'no-any-return']