-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
26 lines (23 loc) · 906 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='textcluster',
version='0.0.2',
description='Tool to cluster documents according to text similarity.',
long_description=open('README.rst').read(),
author='Dave Dash',
author_email='[email protected]',
url='http://github.com/davedash/textcluster',
license='BSD',
packages=find_packages(),
include_package_data=True,
install_requires=['stemming'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Text Processing :: Indexing',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)