-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.43 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (35 loc) · 1.43 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
34
35
36
37
from setuptools import setup, find_packages
__version_info__ = 2, 0, 2
__version__ = '.'.join(map(str, __version_info__))
setup(
name="pycontractions",
version=__version__,
description="Intelligently expand and create contractions in text leveraging grammar checking and Word Mover's Distance.",
author="Ian Beaver, Verint - Next IT",
author_email="ian.beaver@verint.com",
url="https://github.com/ian-beaver/pycontractions",
license="BSD",
packages=find_packages(),
long_description=open("README.rst").read(),
install_requires=["gensim>=2.0", "language_check>=1.1", "pyemd>=0.4.4"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Topic :: Text Processing',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development :: Libraries',
],
)