|
| 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.9" |
| 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.9", |
| 23 | + "Topic :: Database :: Front-Ends", |
| 24 | + "Topic :: Scientific/Engineering", |
| 25 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 26 | +] |
| 27 | +dynamic = [ "version" ] |
| 28 | +dependencies = [ |
| 29 | + "beautifulsoup4==4.13.3", |
| 30 | + "requests", |
| 31 | +] |
| 32 | + |
| 33 | +[project.optional-dependencies] |
| 34 | +all = [ |
| 35 | + "tika[tests]", |
| 36 | +] |
| 37 | +tests = [ |
| 38 | + "memory-profiler>=0.57", |
| 39 | + "pytest-benchmark>=3.2.2", |
| 40 | + "pytest-cov<2.6", |
| 41 | + "python-coveralls", |
| 42 | + "pyyaml==5.4.1", |
| 43 | +] |
| 44 | + |
| 45 | +[project.urls] |
| 46 | +homepage = "http://github.com/chrismattmann/tika-python" |
| 47 | +repository = "http://github.com/chrismattmann/tika-python.git" |
| 48 | + |
| 49 | +[project.scripts] |
| 50 | +tika-python = "tika.tika:main" |
| 51 | + |
| 52 | +[tool.setuptools] |
| 53 | +packages.find.include = [ |
| 54 | + "tika*", |
| 55 | +] |
| 56 | +packages.find.exclude = [ "tika.tests*" ] |
0 commit comments