-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (28 loc) · 920 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "tcmb"
version = "0.4.1"
authors = [{ name = "Kaymal", email = "[email protected]" }]
description = "Central Bank of the Republic of Türkiye (TCMB) Python API."
readme = "README.md"
license = { file = 'LICENSE' }
requires-python = ">=3.8"
classifiers = [
'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',
]
dependencies = ["pandas", "numpy", "requests"]
[project.urls]
repository = "https://github.com/kaymal/tcmb-py"
pypi = "https://pypi.org/project/tcmb"
[tool.setuptools.packages.find]
include = ["tcmb"]
namespaces = true
[tool.setuptools.package-data]
"tcmb.resources" = ["*"]