-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 1 KB
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 1 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cftc-cot"
version = "0.1.3"
description = "Downloader for official CFTC Commitments of Traders (COT) report archives and explanatory notes"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "Ahmed Amine Mchayaa", email = "info@madev.de" }
]
keywords = [
"cftc",
"cot",
"commitments-of-traders",
"futures",
"market-data",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas>=1.5",
"requests>=2.25",
"beautifulsoup4>=4.9",
]
[project.urls]
Homepage = "https://github.com/Mcamin/cftc-cot"
Repository = "https://github.com/Mcamin/cftc-cot"
Documentation = "https://github.com/Mcamin/cftc-cot#readme"