-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 989 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (29 loc) · 989 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
from pathlib import Path
from setuptools import find_packages, setup
import re
this_directory = Path(__file__).parent
long_description_mkd = (this_directory / "README.md").read_text()
init_path = Path("gotohuman/_version.py").resolve()
with open(init_path) as f:
version = re.search(r"__version__ = ['\"]([^'\"]+)['\"]", f.read()).group(1)
setup(
name='gotohuman',
packages=find_packages(exclude=['img']),
version=version,
description='Python SDK for gotoHuman',
long_description=long_description_mkd,
long_description_content_type="text/markdown",
keywords="gotohuman ai agents llm automation human-in-the-loop human reviews",
url="https://gotohuman.com",
project_urls={
"Documentation": "https://docs.gotohuman.com/",
"Twitter": "https://twitter.com/gotohuman",
},
author='gotoHuman',
author_email='hello@gotohuman.com',
install_requires=[
'requests'
],
python_requires=">=3.8",
license="MIT"
)