-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.27 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.27 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
from setuptools import setup, find_packages
from setuptools.command.install import install
import os
setup(
name='qa_metrics',
version='0.2.30',
author='Zongxia Li',
author_email='zli12321@umd.edu',
description='This package provides standard and classifier-based short form QA evaluation methods',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/zli12321/qa_metrics',
packages=find_packages(),
include_package_data=True,
package_data={
'qa_evaluators.metrics.classifier': ['*.pkl'],
},
install_requires=[
'contractions>=0.0.1',
'joblib',
'requests',
'scipy>=1.5.0',
'scikit-learn==1.3.2',
'numpy'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.6',
)