-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
49 lines (40 loc) · 1.16 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
[project]
name = "free-solscan-api"
version = "0.0.4"
description = "Unofficial Python client for accessing the Solscan private API"
authors = [
{name = "paoloechoes",email = "anzanipaolo.enquires@gmail.com"}
]
packages = [{include = "free_solscan_api", from = "src"}]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"cloudscraper (>=1.2.71,<2.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
ruff = "^0.9.9"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
addopts = "--verbose --color=yes"
norecursedirs = ".venv .git"
python_files = "test_*.py"
[tool.ruff]
line-length = 88
[tool.ruff.format]
quote-style = "double"
docstring-code-format = true