forked from coady/lupyne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (56 loc) · 1.6 KB
/
setup.cfg
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
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = lupyne
version = attr: lupyne.__version__
author = Aric Coady
author_email = aric.coady@gmail.com
description = Pythonic search engine based on PyLucene.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/coady/lupyne
license = Apache Software License
keywords = lucene, pylucene
project_urls =
Documentation = https://coady.github.io/lupyne
classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Internet :: WWW/HTTP :: HTTP Servers
Topic :: Internet :: WWW/HTTP :: Indexing/Search
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Indexing
Typing :: Typed
[options]
zip_safe = False
packages = lupyne, lupyne.engine, lupyne.services
python_requires = >=3.7
[options.package_data]
lupyne = py.typed
[options.extras_require]
rest = fastapi
graphql = strawberry-graphql[asgi]>=0.84.4
[flake8]
ignore = E203,F402
max-line-length = 120
exclude = .venv
[tool:pytest]
addopts = -p no:faulthandler
[coverage:run]
source = lupyne
branch = True
omit = lupyne/server/*.py
[mypy]
[mypy-lucene]
ignore_missing_imports = True
[mypy-jcc]
ignore_missing_imports = True
[mypy-java.*]
ignore_missing_imports = True
[mypy-org.apache.*]
ignore_missing_imports = True