-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
71 lines (67 loc) · 2.29 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
# Get version number and store it in __version__
exec(open("cleanlab_studio/version.py").read())
setup(
name="cleanlab-studio",
version=__version__,
license="MIT",
author="Cleanlab Inc",
author_email="[email protected]",
description="Client interface for all things Cleanlab Studio",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cleanlab/cleanlab-studio",
project_urls={
"Bug Tracker": "https://github.com/cleanlab/cleanlab-studio/issues",
"Documentation": "https://help.cleanlab.ai",
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
],
keywords="cleanlab",
packages=find_packages(exclude=[]),
py_modules=["main"],
python_requires=">=3.8",
install_requires=[
"aiohttp>=3.8.1",
"Click>=8.1.0,<=8.1.3",
"colorama>=0.4.4",
"nest_asyncio>=1.5.0",
"pandas==2.*",
"pyexcel>=0.7.0",
"pyexcel-xls>=0.7.0",
"pyexcel-xlsx>=0.6.0",
"requests>=2.27.1",
"tqdm>=4.64.0",
"ijson>=3.1.4",
"jsonstreams>=0.6.0",
"semver>=2.13.0,<3.0.0",
"Pillow>=9.2.0",
"typing_extensions>=4.2.0",
"openpyxl>=3.0.0,!=3.1.0",
"validators>=0.20.0",
"matplotlib>=3.4.0",
],
entry_points="""
[console_scripts]
cleanlab=cleanlab_studio.cli:main
""",
)