-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (34 loc) · 1.2 KB
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]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "precise-patterns"
version = "0.2.0-alpha"
description = "The next iteration of Stock Patterns"
readme = "README.md"
keywords = [ "algo-trading", "patterns", "stock-market" ]
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [ "pyee==13", "python-dateutil==2.9.0.post0" ]
optional-dependencies.docs = [
"furo==2025.9.25",
"sphinx==8.2.3",
]
author = "Benny Thadikaran"