-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 971 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 971 Bytes
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>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "AlorPy"
version = "2026.02.03"
description = "Библиотека-обертка, которая позволяет работать с АЛОР Брокер API брокера Алор из Python"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{name = "Чечет Игорь Александрович"}
]
classifiers = [
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Office/Business :: Financial :: Investment"
]
dependencies = [
"keyring>=25.7.0",
"requests",
"PyJWT",
"urllib3",
"websockets"
]
[project.urls]
Homepage = "https://github.com/cia76/AlorPy"
Repository = "https://github.com/cia76/AlorPy"
[tool.setuptools]
packages = ["AlorPy"]