-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
43 lines (39 loc) · 1.24 KB
/
setup.py
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
from setuptools import setup, find_packages
version = '0.9.0'
try:
with open('README.md') as file:
long_description = file.read()
except Exception:
long_description = "Autocomplete"
setup(
name='fast-autocomplete',
description='Fast Autocomplete using Directed Word Graph',
long_description=long_description,
long_description_content_type='text/markdown',
author='Sep Dehpour',
url='https://github.com/seperman/fast-autocomplete',
author_email='[email protected]',
version=version,
install_requires=[],
extras_require={
'levenshtein': ['python-Levenshtein>=0.12.2'],
'pylev': ['pylev>=1.4.0'],
},
dependency_links=[],
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
scripts=[],
test_suite="tests",
tests_require=['mock'],
license='MIT',
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
]
)