-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 969 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 969 Bytes
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 = "funpaybot"
version = "1.0.0"
description = "Многофункциональный бот-автоматизация для продавцов FunPay"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "FunPayBot" }]
keywords = ["funpay", "bot", "automation", "seller", "lots"]
dependencies = [
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.0.0",
"PyYAML>=6.0.1",
"rich>=13.7.0",
"typer>=0.12.0",
"python-dotenv>=1.0.0",
"colorama>=0.4.6",
"schedule>=1.2.1",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"flask>=3.0.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0.0", "pytest-cov>=4.1.0"]
[project.scripts]
funpaybot = "funpaybot.cli:app"
[tool.setuptools.packages.find]
include = ["funpaybot*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]