-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (27 loc) · 1.07 KB
/
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
26
27
28
29
30
import os
from setuptools import setup, find_packages
from distutils.core import setup
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "corpus_similarity",
version = "1.1",
author = "Jonathan Dunn, Haipeng Li, Damian Sastre",
author_email = "[email protected]",
description = ("Measuring corpus similarity in Python"),
license = "GNU GENERAL PUBLIC LICENSE v3",
url = "https://github.com/jonathandunn/corpus_similarity",
keywords = "text analytics, natural language processing, computational linguistics, corpus, corpora, similarity",
packages = find_packages(exclude=["*.pyc", "__pycache__"]),
package_data={'': ['corpus_similarity.in_domain_features.*', 'corpus_similarity.out_of_domain_features.*', 'corpus_similarity.threshold_values.*']},
install_requires=["cytoolz",
"numpy",
"clean-text",
"scipy",
"scikit-learn",
],
include_package_data=True,
long_description=read('README.md'),
long_description_content_type='text/markdown',
)