-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
setup.py
42 lines (39 loc) · 1.52 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
from setuptools import setup, find_packages
import os
# Read the long description from README.md
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Read requirements from requirements.txt
def parse_requirements(filename):
with open(filename, "r") as f:
lines = f.readlines()
# Remove comments and empty lines
return [line.strip() for line in lines if line.strip() and not line.startswith("#")]
setup(
name="babyagi", # Ensure this is the desired package name
version="0.1.2", # Update this version appropriately
author="Yohei Nakajima",
author_email="[email protected]",
description="An experimental prototype framework for building self building autonomous agents.",
long_description= long_description,
long_description_content_type="text/markdown",
url="https://github.com/yoheinakajima/babyagi", # Update if necessary
packages=find_packages(),
include_package_data=True, # Include package data as specified in MANIFEST.in
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=parse_requirements("requirements.txt"),
entry_points={
'console_scripts': [
'babyagi=babyagi.main:main', # Example entry point
],
},
keywords="AGI, AI, Framework, Baby AGI",
project_urls={ # Optional
"Author": "https://x.com/yoheinakajima",
},
)