-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 749 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='finisher',
version="0.1.11",
url='https://github.com/slobdell/Finisher',
author="Scott Lobdell",
author_email="scott.lobdell@gmail.com",
description=("Autocomplete package to train a model and return best results from input tokens"),
long_description=("Autocomplete package to train a model and return best results from input tokens"),
keywords="python autocomplete spellcheck",
license="MIT",
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=["redis"],
extras_require={},
classifiers=[
'Programming Language :: Python :: 2.7',
'Topic :: Other/Nonlisted Topic'],
)