forked from kieran-mackle/ccxt-download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.03 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ccxt_download"
version = "0.4.0"
authors = [
{ name="Kieran Mackle", email="[email protected]" },
]
description = "A lightweight package to efficiently download cryptocurrency data using CCXT."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'ccxt >= 4.0.112',
'pandas >= 2.1.1',
'aiolimiter >= 1.1.0',
]
[project.optional-dependencies]
dev = [
'black >= 23.9.1',
'commitizen >= 3.10.0',
'pre-commit >= 3.4.0',
]
[project.urls]
"Homepage" = "https://github.com/kieran-mackle/ccxt-download"
"Bug Tracker" = "https://github.com/kieran-mackle/ccxt-download/issues"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.4.0"
tag_format = "v$version"
version_provider = "pep621"
version_files = [
"pyproject.toml:^version",
]
update_changelog_on_bump = true