|
| 1 | +[project] |
| 2 | +name = "Scrape-schema" |
| 3 | +version = "0.0.1" |
| 4 | +description = "library for creating ontologies from documents" |
| 5 | +authors = [ |
| 6 | + { name = "Marco Vinciguerra", email = "mvincig11@gmail.com" }, |
| 7 | + { name = "Marco Perini", email = "perinim.98@gmail.com" }, |
| 8 | + { name = "Lorenzo Padoan", email = "lorenzo.padoan977@gmail.com" } |
| 9 | +] |
| 10 | + |
| 11 | +dependencies = [ |
| 12 | + "certifi==2024.7.4", |
| 13 | + "charset-normalizer==3.3.2", |
| 14 | + "idna==3.8", |
| 15 | + "pdf2image==1.17.0", |
| 16 | + "pillow==10.4.0", |
| 17 | + "python-dotenv==1.0.1", |
| 18 | + "requests==2.32.3", |
| 19 | + "urllib3==2.2.2" |
| 20 | +] |
| 21 | + |
| 22 | +license = "MIT" |
| 23 | +readme = "README.md" |
| 24 | +homepage = "https://scrapegraphai.com/" |
| 25 | +repository = "https://github.com/ScrapeGraphAI/ScrapeSchema" |
| 26 | +documentation = "" |
| 27 | +keywords = [ |
| 28 | + "scrapegraph", |
| 29 | + "scrapegraphai", |
| 30 | + "langchain", |
| 31 | + "ai", |
| 32 | + "artificial intelligence", |
| 33 | + "gpt", |
| 34 | + "machine learning", |
| 35 | + "rag", |
| 36 | + "nlp", |
| 37 | + "natural language processing", |
| 38 | + "openai", |
| 39 | + "scraping", |
| 40 | + "web scraping", |
| 41 | + "web scraping library", |
| 42 | + "web scraping tool", |
| 43 | + "webscraping", |
| 44 | + "graph", |
| 45 | +] |
| 46 | +classifiers = [ |
| 47 | + "Intended Audience :: Developers", |
| 48 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 49 | + "Programming Language :: Python :: 3", |
| 50 | + "Operating System :: OS Independent", |
| 51 | +] |
| 52 | +requires-python = ">=3.9,<4.0" |
| 53 | + |
| 54 | +[project.optional-dependencies] |
| 55 | +burr = ["burr[start]==0.22.1"] |
| 56 | +docs = ["sphinx==6.0", "furo==2024.5.6"] |
| 57 | + |
| 58 | +[build-system] |
| 59 | +requires = ["hatchling"] |
| 60 | +build-backend = "hatchling.build" |
| 61 | + |
| 62 | +[tool.rye] |
| 63 | +managed = true |
| 64 | +dev-dependencies = [ |
| 65 | + "pytest==8.0.0", |
| 66 | + "pytest-mock==3.14.0", |
| 67 | + "-e file:.[burr]", |
| 68 | + "-e file:.[docs]", |
| 69 | + "pylint>=3.2.5", |
| 70 | +] |
| 71 | + |
| 72 | +[tool.rye.scripts] |
| 73 | +pylint-local = "pylint scrapegraphai/**/*.py" |
| 74 | +pylint-ci = "pylint --disable=C0114,C0115,C0116 --exit-zero scrapegraphai/**/*.py" |
| 75 | +update-requirements = "python 'manual deployment/autorequirements.py'" |
0 commit comments