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

View File

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