|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling>=1.27.0"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "itemloaders" |
| 7 | +version = "1.3.2" |
| 8 | +description = "Base library for scrapy's ItemLoader" |
| 9 | +authors = [ |
| 10 | + { name = "Zyte", email = "[email protected]" }, |
| 11 | +] |
| 12 | +readme = "README.rst" |
| 13 | +license = "BSD-3-Clause" |
| 14 | +license-files = ["LICENSE"] |
| 15 | +dependencies = [ |
| 16 | + # before updating these versions, be sure they are not higher than |
| 17 | + # scrapy's requirements |
| 18 | + "itemadapter>=0.1.0", |
| 19 | + "jmespath>=0.9.5", |
| 20 | + "parsel>=1.5.0", |
| 21 | +] |
| 22 | +requires-python = ">=3.9" |
| 23 | +classifiers = [ |
| 24 | + "Development Status :: 5 - Production/Stable", |
| 25 | + "Intended Audience :: Developers", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.9", |
| 29 | + "Programming Language :: Python :: 3.10", |
| 30 | + "Programming Language :: Python :: 3.11", |
| 31 | + "Programming Language :: Python :: 3.12", |
| 32 | + "Programming Language :: Python :: 3.13", |
| 33 | + "Programming Language :: Python :: Implementation :: CPython", |
| 34 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 35 | + "Operating System :: OS Independent", |
| 36 | + "Framework :: Scrapy", |
| 37 | + "Topic :: Internet :: WWW/HTTP", |
| 38 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 39 | +] |
| 40 | + |
| 41 | +[project.urls] |
| 42 | +Homepage = "https://github.com/scrapy/itemloaders" |
| 43 | +Documentation = "https://itemloaders.readthedocs.io/" |
| 44 | +Source = "https://github.com/scrapy/itemloaders" |
| 45 | +Tracker = "https://github.com/scrapy/itemloaders/issues" |
| 46 | +"Release notes" = "https://itemloaders.readthedocs.io/en/latest/release-notes.html" |
| 47 | + |
| 48 | +[tool.hatch.build.targets.sdist] |
| 49 | +include = [ |
| 50 | + "/docs", |
| 51 | + "/itemloaders", |
| 52 | + "/tests", |
| 53 | + "/tox.ini", |
| 54 | +] |
| 55 | + |
1 | 56 | [tool.bumpversion] |
2 | | -current_version = "1.3.2" |
3 | 57 | commit = true |
4 | 58 | tag = true |
5 | 59 |
|
6 | | -[[tool.bumpversion.files]] |
7 | | -filename = "setup.py" |
8 | | - |
9 | 60 | [tool.coverage.run] |
10 | 61 | branch = true |
11 | 62 |
|
|
0 commit comments