-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (47 loc) · 1.73 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# #
# *****************************************************************
# #
# IBM Confidential
# #
# Licensed Materials - Property of IBM
# #
# (C) Copyright IBM Corp. 2001, 2021 All Rights Reserved.
# #
# The source code for this program is not published or otherwise
# divested of its trade secrets, irrespective of what has been
# deposited with the U.S. Copyright Office.
# #
# US Government Users Restricted Rights - Use, duplication or
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
# #
# *****************************************************************
import pathlib
import pkg_resources
from setuptools import setup, find_packages
with pathlib.Path('requirements.txt').open() as requirements_txt:
install_requires = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(requirements_txt)
]
setup(name='compcor',
version='1.0.5',
description='Corpus level similarity measures.',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords='Text Compare Corpus Metrics Measure Similarity',
url='https://github.com/IBM/comparing-corpora',
author='Language and Conversation, IBM Research AI',
packages=find_packages('src', exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_dir={'': 'src'},
install_requires=[install_requires],
scripts=[],
include_package_data=True,
python_requires='>=3.8',
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
license='Apache Software License, Version 2.0, http://www.apache.org/licenses/LICENSE-2.0'
)