-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
52 lines (49 loc) · 1.3 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as file:
long_description = file.read()
setup(
name="refinery-python-sdk",
version="1.4.0",
author="jhoetter",
author_email="[email protected]",
description="Official Python SDK for Kern AI refinery.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/code-kern-ai/refinery-python",
keywords=[
"Kern AI",
"refinery",
"machine-learning",
"supervised-learning",
"data-centric-ai",
"data-annotation",
"python",
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
package_dir={"": "."},
packages=find_packages("."),
install_requires=[
"numpy",
"pandas",
"requests",
"boto3",
"botocore",
"spacy",
"wasabi",
"embedders",
"datasets",
],
entry_points={
"console_scripts": [
"rsdk=refinery.cli:main",
],
},
)