-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.52 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=64.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "spacerini"
description = "Hosted Lucene indexes with Pyserini and Hugging Face Spaces"
readme = { file = "README.md", content-type = "text/markdown" }
maintainers = [
{ name = "Christopher Akiki", email = "christopher.akiki@gmail.com" },
{ name = "Ogundepo Odunayo", email = "ogundepoodunayo@gmail.com"},
{ name = "Akintunde Oladipo", email = "akin.o.oladipo@gmail.com"}
]
requires-python = ">=3.8"
dependencies = [
'pyserini',
'cookiecutter',
'huggingface_hub',
'tokenizers',
'datasets>=2.8.0',
'ir_datasets',
'streamlit',
'gradio',
'torch',
'faiss-cpu',
]
dynamic = [
"version",
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
license = { text = "Apache-2.0" }
[project.optional-dependencies]
dev = [
'pytest',
]
[project.urls]
Homepage = "https://github.com/castorini/hf-spacerini"
[project.scripts]
spacerini = "spacerini.cli:main"