-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (87 loc) · 2.21 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (87 loc) · 2.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "shopify-spy"
version = "0.2.1"
description = "Simple CLI to scrape product data, images, and collections from Shopify and WooCommerce stores"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Nicholas Gigliotti", email = "ndgigliotti@gmail.com" },
]
keywords = [
"shopify",
"woocommerce",
"scraper",
"scrapy",
"spider",
"ecommerce",
"web-scraping",
"product-data",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Scrapy",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
]
dependencies = [
"scrapy>=2.13",
"pillow>=10.0",
"typer>=0.15",
"rich>=13.0",
"pyyaml>=6.0",
"pydantic>=2.0",
"platformdirs>=4.9.4",
]
[project.urls]
Homepage = "https://github.com/ndgigliotti/shopify-spy"
Repository = "https://github.com/ndgigliotti/shopify-spy"
"Bug Tracker" = "https://github.com/ndgigliotti/shopify-spy/issues"
[project.scripts]
shopify-spy = "shopify_spy.cli:app"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.9",
"pre-commit>=4.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
]
[tool.ruff.lint.per-file-ignores]
"shopify_spy/user_agents.py" = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore::UserWarning",
"ignore::DeprecationWarning",
]
markers = [
"integration: marks tests that hit external services (deselect with '-m not integration')",
]
addopts = "-m 'not integration'"
asyncio_mode = "auto"
[dependency-groups]
dev = [
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
]