Skip to content

Commit 3dcfcd4

Browse files
committed
fix: pyproject
1 parent ca96c3d commit 3dcfcd4

File tree

2 files changed

+22
-11
lines changed

2 files changed

+22
-11
lines changed

pyproject.toml

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
[project]
22
name = "scrapegraphai"
3-
4-
5-
6-
version = "1.33.6"
7-
8-
9-
10-
3+
version = "1.33.5"
114
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
125
authors = [
136
{ name = "Marco Vinciguerra", email = "[email protected]" },
@@ -115,11 +108,22 @@ screenshot_scraper = [
115108
]
116109

117110
[build-system]
118-
requires = ["hatchling"]
111+
requires = ["hatchling>=1.0.0"]
119112
build-backend = "hatchling.build"
120113

121-
[tool.hatch.metadata]
122-
allow-direct-references = true
114+
[tool.hatch.version]
115+
path = "pyproject.toml"
116+
117+
[tool.hatch.build]
118+
include = [
119+
"scrapegraphai/**/*.py",
120+
"scrapegraphai/**/*.typed",
121+
"/tests",
122+
]
123+
exclude = [
124+
"tests/**",
125+
"examples/**",
126+
]
123127

124128
[tool.hatch.build.targets.wheel]
125129
packages = ["scrapegraphai"]
@@ -128,8 +132,14 @@ packages = ["scrapegraphai"]
128132
include = [
129133
"/scrapegraphai",
130134
"/tests",
135+
"pyproject.toml",
136+
"README.md",
137+
"LICENSE",
131138
]
132139

140+
[tool.hatch.metadata]
141+
allow-direct-references = true
142+
133143
[dependency-groups]
134144
dev = [
135145
"burr[start]==0.22.1",

scrapegraphai/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
"""
22
__init__.py file for scrapegraphai folder
33
"""
4+
__version__ = "1.33.5"

0 commit comments

Comments
 (0)