forked from chuanconggao/TopSim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (32 loc) · 902 Bytes
/
setup.py
File metadata and controls
43 lines (32 loc) · 902 Bytes
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
#! /usr/bin/env python3
from setuptools import setup
url = "https://github.com/chuanconggao/TopSim"
version = "0.1.3"
setup(
name="TopSim",
packages=["topsim"],
scripts=["topsim-cli"],
url=url,
version=version,
download_url=f"{url}/tarball/{version}",
license="MIT",
author="Chuancong Gao",
author_email="chuancong@gmail.com",
description="Search the most similar strings against the query in Python 3.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords=[
"similarity-search",
"string-search"
],
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
],
python_requires=">= 3",
install_requires=[
"docopt >= 0.6.2",
"extratools >= 0.3"
]
)