-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (115 loc) · 2.94 KB
/
pyproject.toml
File metadata and controls
119 lines (115 loc) · 2.94 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "altinapi"
version = "0.1.0"
description = "Harem Altın ile aynı fiyat verisi — Türkiye'nin gerçek zamanlı altın, döviz, gümüş ve platin fiyat API'si. REST + WebSocket. Bağımsız servis, Harem Altın ile organik bağı yoktur."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
authors = [
{ name = "altinapi", email = "support@altinapi.com" }
]
keywords = [
"altin",
"altinapi",
"altin-api",
"altin-fiyat",
"altin-fiyat-api",
"altin-fiyatlari",
"altin-fiyatlari-api",
"harem",
"harem-api",
"harem-altin",
"harem-altin-api",
"harem-altin-fiyat",
"harem-altin-canli",
"harem-altin-alternatif",
"harem-altin-benzeri",
"has-altin",
"doviz",
"doviz-api",
"doviz-fiyat",
"doviz-fiyat-api",
"doviz-kuru",
"doviz-kuru-api",
"canli-doviz",
"gram-altin",
"gram-altin-api",
"gram-altin-fiyat",
"ceyrek-altin",
"ceyrek-altin-api",
"yarim-altin",
"tam-altin",
"ata-altin",
"sarrafiye",
"sarrafiye-api",
"kuyumcu",
"kuyumcu-yazilim",
"ons-altin",
"kapali-carsi",
"canli-altin",
"canli-altin-fiyat",
"gercek-zamanli-altin",
"anlik-altin",
"anlik-doviz",
"usdtry",
"eurtry",
"gbptry",
"turk-lirasi",
"tl-api",
"turkiye-altin",
"turkiye-finans",
"gumus-fiyat",
"platin-fiyat",
"paladyum-fiyat",
"gold-price",
"gold-price-api",
"turkish-gold-api",
"turkey-forex-api",
"forex",
"forex-api",
"websocket",
"socket.io",
"real-time",
"finance",
"trading",
"fintech"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: Turkish"
]
dependencies = [
"requests>=2.28",
"python-socketio[client]>=5.10",
"typing_extensions>=4.0; python_version < '3.8'"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock>=3.10",
"responses>=0.23"
]
[project.urls]
Homepage = "https://altinapi.com"
Documentation = "https://altinapi.com/docs"
Repository = "https://github.com/altinapi/altinapi-python"
Issues = "https://github.com/altinapi/altinapi-python/issues"
[tool.setuptools.packages.find]
include = ["altinapi*"]
exclude = ["tests*", "examples*"]