-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (51 loc) · 1.81 KB
/
setup.py
File metadata and controls
56 lines (51 loc) · 1.81 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from distutils.core import setup
import setuptools
from setuptools import find_packages
from setuptools.command.build_ext import build_ext
# find packages to be included. exclude benchmarks.
packages = setuptools.find_packages(exclude=['docs','notebooks'])
cmdclass = {"build_ext": build_ext}
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
setup(
name='textsim',
version='0.1.0',
description='Python library for string matching.',
long_description=LONG_DESCRIPTION,
url='https://github.com/sorice/textsim',
author='Abel Meneses-Abad',
author_email='abelma1980@gmail.com',
license='BSD',
classifiers=[
'Development Status :: 1 - Production',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Text Data Mining',
'Topic :: Text Processing',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
],
packages=packages,
install_requires=[
'numpy >= 1.7.0',
'nltk >= 3.1',
'scikit-learn >= 0.23.0',
],
setup_requires=[
'numpy >= 1.7.0'
],
cmdclass=cmdclass,
include_package_data=True,
zip_safe=False
)