-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 833 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
[project]
name = "kap_sdk"
version = "0.1.24"
description = "KAP (Kamuyu Aydınlatma Platformu) üzerinden veri çekmek için bir Python SDK"
authors = [{name = "Mustafa Kilic", email = "mustafa@example.com"}]
readme = "README.md"
keywords = ["kap", "public disclosure platform", "data scraping", "financial data"]
license = {text = "MIT"}
requires-python = ">=3.8.1"
dependencies = [
"requests>=2.28.1",
"beautifulsoup4>=4.11.1",
"pyppeteer>=1.0.2",
"diskcache>=5.4.0",
"pandas>=1.5.0",
"lxml>=4.9.1",
"tomli>=2.0.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.3.1",
"black>=23.3.0",
"isort>=5.12.0",
"flake8>=6.0.0",
]
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["kap_sdk", "kap_sdk.models"]