|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = [ "setuptools" ] |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "tika" |
| 7 | +description = "Apache Tika Python library" |
| 8 | +readme = "README.md" |
| 9 | +keywords = [ "tika", "digital", "babel fish", "apache" ] |
| 10 | +license = "Apache-2.0" |
| 11 | +authors = [ { name = "Chris Mattmann", email = "chris.a.mattmann@jpl.nasa.gov" } ] |
| 12 | +requires-python = ">=3.10" |
| 13 | +classifiers = [ |
| 14 | + "Development Status :: 3 - Alpha", |
| 15 | + "Environment :: Console", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Intended Audience :: Information Technology", |
| 18 | + "Intended Audience :: Science/Research", |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 3 :: Only", |
| 22 | + "Programming Language :: Python :: 3.10", |
| 23 | + "Programming Language :: Python :: 3.11", |
| 24 | + "Programming Language :: Python :: 3.12", |
| 25 | + "Programming Language :: Python :: 3.13", |
| 26 | + "Programming Language :: Python :: 3.14", |
| 27 | + "Topic :: Database :: Front-Ends", |
| 28 | + "Topic :: Scientific/Engineering", |
| 29 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 30 | +] |
| 31 | +dynamic = [ "version" ] |
| 32 | +dependencies = [ |
| 33 | + "beautifulsoup4==4.13.3", |
| 34 | + "requests", |
| 35 | +] |
| 36 | + |
| 37 | +[project.optional-dependencies] |
| 38 | +all = [ |
| 39 | + "tika[tests]", |
| 40 | +] |
| 41 | +tests = [ |
| 42 | + "memory-profiler", |
| 43 | + "pytest-benchmark", |
| 44 | + "pytest-cov", |
| 45 | +] |
| 46 | + |
| 47 | +[project.urls] |
| 48 | +homepage = "http://github.com/chrismattmann/tika-python" |
| 49 | +repository = "http://github.com/chrismattmann/tika-python.git" |
| 50 | + |
| 51 | +[project.scripts] |
| 52 | +tika-python = "tika.tika:main" |
| 53 | + |
| 54 | +[tool.setuptools] |
| 55 | +packages.find.include = [ |
| 56 | + "tika*", |
| 57 | +] |
| 58 | + |
| 59 | +[tool.setuptools.dynamic] |
| 60 | +version = {attr = "tika.__version__"} |
| 61 | + |
| 62 | +[tool.coverage.run] |
| 63 | +source = [ "tika" ] |
| 64 | +branch = true |
0 commit comments