-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.02 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
import codecs
from setuptools import find_packages, setup
from version import __version__
setup(
name="explainaboard_client",
version=__version__,
description="ExplainaBoard Client",
long_description=codecs.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/neulab/explainaboard_client",
license="MIT License",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Text Processing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
packages=find_packages(),
entry_points={
"console_scripts": [],
},
install_requires=["explainaboard_api_client>=0.4.3"],
extras_require={
"dev": [
"pre-commit",
],
},
include_package_data=True,
)