-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.29 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "glassnode-python"
version = "0.3.2"
description = "Glassnode API client that mimics the yfinance download experience."
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Leev1s" }]
license = { file = "LICENSE" }
keywords = ["glassnode", "crypto", "api", "pandas"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial",
]
dependencies = [
"pandas>=1.5",
"requests>=2.31",
"python-dotenv>=1.0",
]
[project.optional-dependencies]
test = ["pytest>=7.4"]
viz = ["plotly>=5.24"]
[project.urls]
Homepage = "https://github.com/Leev1s/glassnode-python"
Source = "https://github.com/Leev1s/glassnode-python"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]