fix: pyproject

This commit is contained in:
Marco Vinciguerra 2024-12-16 11:11:01 +01:00
parent ca96c3d430
commit 3dcfcd492e
2 changed files with 22 additions and 11 deletions

View File

@ -1,13 +1,6 @@
[project]
name = "scrapegraphai"
version = "1.33.6"
version = "1.33.5"
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
authors = [
{ name = "Marco Vinciguerra", email = "mvincig11@gmail.com" },
@ -115,11 +108,22 @@ screenshot_scraper = [
]
[build-system]
requires = ["hatchling"]
requires = ["hatchling>=1.0.0"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "pyproject.toml"
[tool.hatch.build]
include = [
"scrapegraphai/**/*.py",
"scrapegraphai/**/*.typed",
"/tests",
]
exclude = [
"tests/**",
"examples/**",
]
[tool.hatch.build.targets.wheel]
packages = ["scrapegraphai"]
@ -128,8 +132,14 @@ packages = ["scrapegraphai"]
include = [
"/scrapegraphai",
"/tests",
"pyproject.toml",
"README.md",
"LICENSE",
]
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"burr[start]==0.22.1",

View File

@ -1,3 +1,4 @@
"""
__init__.py file for scrapegraphai folder
"""
__version__ = "1.33.5"