-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (50 loc) · 1.63 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
[build-system]
requires = [
"setuptools>=61.0.0",
"Cython>=3.0.10",
"numpy>=1.26.4"
]
build-backend = "setuptools.build_meta"
[project]
name = "ta_formula"
version = "1.1.2"
description = 'talib extension for formula computation'
authors = [
{name = "sric0880", email = '[email protected]'}
]
requires-python = ">=3.9"
dependencies = [
"Cython>=3.0.10"
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["formula", "quant", "ta", "TA-Lib", "talib", "ta-lib", "technical-analysis", "indicators", "technical-indicators", "quantum-computing"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Cython",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Mathematics",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
]
[project.urls]
# Homepage = "https://example.com"
# Documentation = "https://readthedocs.org"
Repository = "https://github.com/sric0880/ta_formula"
Issues = "https://github.com/sric0880/ta_formula/issues"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"ta_formula" = ["*.pxd"]
[tool.setuptools.package-dir]
ta_formula = "ta_formula"
[project.scripts]
tacompile = "ta_formula.strategy_ast:tacompile_entry"