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