File: setup.py

package info (click to toggle)
thefuzz 0.22.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 696 kB
  • sloc: python: 744; sh: 115; makefile: 8
file content (40 lines) | stat: -rw-r--r-- 1,239 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
33
34
35
36
37
38
39
40
#!/usr/bin/env python

# Copyright (c) 2014 SeatGeek

# This file is part of thefuzz.

from thefuzz import __version__
from setuptools import setup

with open('README.rst') as f:
    long_description = f.read()

setup(
    name='thefuzz',
    version=__version__,
    author='Adam Cohen',
    author_email='adam@seatgeek.com',
    packages=['thefuzz'],
    # keep for backwards compatibility of projects depending on `thefuzz[speedup]`
    extras_require={'speedup': []},
    install_requires=['rapidfuzz>=3.0.0, < 4.0.0'],
    url='https://github.com/seatgeek/thefuzz',
    license="MIT",
    classifiers=[
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
        'Programming Language :: Python :: 3.10',
        'Programming Language :: Python :: 3.11',
        'Programming Language :: Python :: 3.12',
        'Programming Language :: Python :: 3 :: Only',
    ],
    description='Fuzzy string matching in python',
    long_description=long_description,
    zip_safe=True,
    python_requires='>=3.8'
)