blob: 388a54a1c8ba404d29aa7eb499fa0148994aa31b [file] [log] [blame]
Marc Kupietz90575192024-01-26 09:33:24 +01001[project]
2name = "KorAPClient"
feldmuelleredf03002025-03-31 15:58:47 +02003version = "1.0.0"
Marc Kupietz90575192024-01-26 09:33:24 +01004description = "Client package to access KorAP's web service API"
5authors = [
6 {name = "Marc Kupietz",email = "kupietz@ids-mannheim.de"},
Marc Kupietz7b291392025-01-21 11:01:02 +01007 {name = "Tim Feldmüller",email = "feldmueller@ids-mannheim.de"}
Marc Kupietz90575192024-01-26 09:33:24 +01008]
9dependencies = [
10 "markdown",
11 "packaging",
Marc Kupietzeeb2f782024-01-26 13:02:39 +010012 "Pyarrow",
Marc Kupietz90575192024-01-26 09:33:24 +010013 "pandas>=1.2",
14 "rpy2>=3.3",
15]
16requires-python = ">=3.7"
Marc Kupietz0f4b9922024-01-27 10:32:27 +010017readme = "Readme.md"
Marc Kupietz90575192024-01-26 09:33:24 +010018license = {text = "BSD"}
19classifiers = [
20 "Intended Audience :: Developers",
21 "Intended Audience :: Science/Research",
22 "License :: OSI Approved :: BSD License",
23 "Operating System :: OS Independent",
24 "Programming Language :: Python :: 3",
25 "Programming Language :: Python :: 3.10",
26 "Programming Language :: Python :: 3.11",
27 "Programming Language :: Python :: 3.12",
Marc Kupietz8c14edc2025-01-21 10:36:35 +010028 "Programming Language :: Python :: 3.13",
Marc Kupietz90575192024-01-26 09:33:24 +010029 "Programming Language :: Python :: 3.8",
30 "Programming Language :: Python :: 3.9",
31]
32[project.urls]
Marc Kupietz3ded1712024-01-27 18:59:13 +010033Homepage = "https://github.com/KorAP/PythonKorAPClient"
34Issues = "https://github.com/KorAP/PythonKorAPClient/issues"
Marc Kupietz90575192024-01-26 09:33:24 +010035
36[build-system]
37requires = ["setuptools>=61", "wheel"]
38build-backend = "setuptools.build_meta"
39
Marc Kupietz0f4b9922024-01-27 10:32:27 +010040[tool.setuptools.packages.find]
41exclude = ["figures"]
Marc Kupietz90575192024-01-26 09:33:24 +010042
43[tool.pdm]
44distribution = true
Marc Kupietza72fadc2025-04-12 16:28:56 +020045[tool.pytest.ini_options]
46asyncio_mode = "auto"
47asyncio_default_fixture_loop_scope = "session"