-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
77 lines (70 loc) · 1.87 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
[project]
description = "A Python implementation for retrieving and transforming macroeconomic time series data from TCMB EVDS (CBRT EDDS) API."
authors = [
{name = "Burak CELIK", email = "synertic@gmail.com"}
]
maintainers = [
{ name = "syncoding", email = "synertic@gmail.com" },
]
version = "0.1.4"
requires-python = ">=3.13"
dependencies = [
"pandas>=3.0.0",
"requests>=2.32.5",
"tqdm>=4.67.3",
]
readme = "README_EN.md"
license = "MIT"
license-files = ["LICEN[CS]E*"]
name = "evdsts"
keywords = [
"evds",
"edds",
"tcmb",
"cbot",
"econometrics",
"macroeconomics",
]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Natural Language :: Turkish",
"Natural Language :: English",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.scripts]
evdsts = "evdsts.cli:main"
[project.urls]
Homepage = "https://github.com/syncoding/evdsts"
Documentation = "https://github.com/syncoding/evdsts/blob/master/README_EN.md"
Repository = "https://github.com/syncoding/evdsts.git"
Issues = "https://github.com/syncoding/evdsts/issues"
Changelog = "https://github.com/syncoding/evdsts/blob/master/CHANGELOG.md"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project.optional-dependencies]
excel = ["openpyxl",]
[tool.hatch.build]
exclude = [
"uv.lock",
".gitignore",
"docs",
"tests",
"evdsts/*.json",
]
include= [
"evdsts",
"evdsts/data",
]