forked from agentos-project/agentos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.22 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
import os
from importlib.machinery import SourceFileLoader
from setuptools import setup, find_packages
version = (
SourceFileLoader("agentos.version", os.path.join("agentos", "version.py"))
.load_module()
.VERSION
)
setup(
name="agentos",
description=(
"AgentOS is a command line interface and python developer API "
"for building, running, and sharing flexible learning agents."
),
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
author="Andy Konwinski",
version=version,
packages=find_packages(),
install_requires=[
"click>=7.0",
"gym==0.17.1",
"numpy>=1.18.5",
"dm-env>=1.5",
"pyyaml>=5.4.1",
"mlflow>=1.20.2",
"dulwich==0.20.28",
"requests>=2.21.0",
"python-dotenv>=0.19.1",
"rich>=10.15.2",
"dill>=0.3.4",
],
entry_points="""
[console_scripts]
agentos=agentos.cli:agentos_cmd
""",
license="Apache License 2.0",
python_requires=">=3.5",
keywords="reinforcement learning ai agent",
url="https://agentos.org",
project_urls={
"Source Code": "https://github.com/agentos-project/agentos",
},
)