-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.py
46 lines (43 loc) · 1.2 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
#!/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"), encoding="utf8") as file:
long_description = file.read()
setup(
name="kern-refinery",
version="1.3.0",
author="jhoetter",
author_email="johannes.hoetter@kern.ai",
description="The open-source data-centric IDE for NLP.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/code-kern-ai/refinery",
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=[
"requests",
"wasabi",
"GitPython",
],
entry_points={
"console_scripts": [
"refinery=refinery.cli:main",
],
},
)