-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
30 lines (28 loc) · 827 Bytes
/
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
[metadata]
name = pysearchlite
version = attr: pysearchlite.VERSION
description = "Lightweight text search engine written in Python"
long_description = file: README.rst
home_page = https://github.com/stn/pysearchlite
keywords = search
license = MIT
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: WWW/HTTP :: Indexing/Search
Topic :: Text Processing :: Indexing
[options]
zip_safe = True
include_package_data = False
python_requires = >= 3.9
packages = find:
[options.packages.find]
include =
pysearchlite*
exclude =
study*