-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
58 lines (52 loc) · 1.87 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
#!/usr/bin/env python
#
# Copyright (c) 2023 Superpowered AI All right reserved.
#
import os
import setuptools
long_desc = """# Superpowered AI
LLM-powered autonomous agent with hierarchical task management
"""
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname), "r", encoding="utf-8") as fh:
return fh.read()
setuptools.setup(
name="task-tree-agent",
version="0.0.1",
description="Task Tree Agent",
license="MIT License",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://superpowered.ai",
project_urls={
"Homepage": "https://superpowered.ai",
"Documentation": "https://superpowered.ai/docs",
"Contact": "https://superpowered.ai/contact/",
},
author="superpowered",
author_email="[email protected]",
keywords="Superpowered AI Task Tree Agent",
packages=setuptools.find_packages(),
install_requires=read("requirements.txt"),
include_package_data=True,
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)