File: setup.py

package info (click to toggle)
sqlite-fts4 1.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: python: 438; makefile: 7
file content (32 lines) | stat: -rw-r--r-- 928 bytes parent folder | download
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
from setuptools import setup
import os

VERSION = "1.0.3"


def get_long_description():
    with open(
        os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
        encoding="utf8",
    ) as fp:
        return fp.read()


setup(
    name="sqlite-fts4",
    description="Python functions for working with SQLite FTS4 search",
    long_description=get_long_description(),
    long_description_content_type="text/markdown",
    author="Simon Willison",
    url="https://github.com/simonw/sqlite-fts4",
    project_urls={
        "Issues": "https://github.com/simonw/sqlite-fts4/issues",
        "CI": "https://github.com/simonw/sqlite-fts4/actions",
        "Changelog": "https://github.com/simonw/sqlite-fts4/releases",
    },
    license="Apache License, Version 2.0",
    version=VERSION,
    packages=["sqlite_fts4"],
    extras_require={"test": ["pytest"]},
    tests_require=["sqlite-fts4[test]"],
)