forked from life4/textdistance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (25 loc) · 1.05 KB
/
setup.py
File metadata and controls
33 lines (25 loc) · 1.05 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name = 'textdistance',
version = '2.0.2',
author = 'orsinium',
author_email = 'master_fess@mail.ru',
description = 'Compute distance between the two texts.',
long_description = open('README.rst').read(),
keywords = 'distance between text strings sequences iterators',
packages = ['textdistance', 'textdistance.algorithms'],
requires = ['python (>= 2.7)'],
url = 'https://github.com/orsinium/textdistance',
download_url = 'https://github.com/orsinium/textdistance/tarball/master',
license = 'GNU Lesser General Public License v3.0',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
],
)