-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 990 Bytes
/
setup.py
File metadata and controls
41 lines (38 loc) · 990 Bytes
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
from setuptools import setup, find_packages
import codecs
import eaas
import eaas.client
setup(
name="eaas",
version=eaas.__version__,
description="Evaluation as a Service for Natural Language Processing",
long_description=codecs.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/ExpressAI/EaaS_API",
author="ExpressAI",
license="Apache 2.0",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Text Processing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
entry_points={
"console_scripts": [
"eaas-cli=eaas.eaas_cli:main",
],
},
install_requires=[
"nltk>=3.2",
"numpy",
"scipy",
"matplotlib",
"scikit-learn",
"pandas",
"tqdm",
"requests"
],
include_package_data=True,
)