-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.16 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "renkodf"
version = "1.1"
description = "Transform Tick Data into OHLCV Renko Dataframe!"
readme = "README_link.md"
authors = [
{ name = "Carlos Gabriel", email = "carlgsr1@gmail.com" }
]
license = { file = "LICENSE.txt" }
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Natural Language :: Portuguese (Brazilian)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities",
]
keywords = ["renko", "pyrenko", "renkopy", "renkowicks", "renko ohlc",
'finance','candlestick','ohlc','market','investing','technical analysis']
requires-python = ">=3.8"
dependencies = ["numpy", "pandas", "mplfinance"]
[tool.setuptools]
package-dir = {"" = "src"}
[project.urls]
"Homepage" = "https://github.com/srlcarlg/renkodf"