-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
156 lines (138 loc) · 5.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
#
# Copyright 2021-2024 Valory AG
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# ------------------------------------------------------------------------------
import os
import re
from typing import Dict
from setuptools import find_packages, setup # type: ignore
PACKAGE_NAME = "autonomy"
here = os.path.abspath(os.path.dirname(__file__))
def get_all_extras() -> Dict:
cli_deps = [
"click>=8.1.0,<9",
"open-aea-cli-ipfs==1.60.0",
"texttable==1.6.7",
"python-dotenv>=0.14.5,<0.22.0",
"pytest>=7.0.0,<7.3.0",
"coverage>=6.4.4,<8.0.0",
]
extras = {
"cli": cli_deps,
}
# add "all" extras
extras["all"] = list(set(dep for e in extras.values() for dep in e))
return extras
all_extras = get_all_extras()
base_deps = [
"Flask>=2.0.2,<3.0.0",
"open-aea[all]==1.60.0",
"watchdog>=2.1.6",
"pytest==7.2.1",
"valory-docker-compose==1.29.3",
"werkzeug==2.0.3",
"docker==6.1.2",
"hexbytes",
"jsonschema<4.4.0,>=4.3.0",
"protobuf<4.25.0,>=4.21.6",
"gql==3.5.0",
"requests<2.31.2,>=2.28.1",
"requests-toolbelt==1.0.0", # Required for graphql client
"aiohttp<4.0.0,>=3.8.5",
"typing_extensions>=3.10.0.2",
]
base_deps.extend(all_extras["cli"])
here = os.path.abspath(os.path.dirname(__file__))
about: Dict[str, str] = {}
with open(os.path.join(here, PACKAGE_NAME, "__version__.py"), "r") as f:
exec(f.read(), about)
def parse_readme():
with open("README.md", "r") as f:
readme = f.read()
# replace relative links of images
raw_url_root = "https://raw.githubusercontent.com/valory-xyz/open-autonomy/main/"
replacement = raw_url_root + r"\g<0>"
readme = re.sub(r"(?<=<img src=\")(/.*)(?=\")", replacement, readme, re.DOTALL)
return "\n".join([readme])
if __name__ == "__main__":
setup(
name=about["__title__"],
description=about["__description__"],
version=about["__version__"],
author=about["__author__"],
url=about["__url__"],
long_description=parse_readme(),
long_description_content_type="text/markdown",
package_data={
"autonomy": [
"py.typed",
"data/*",
"data/Dockerfiles/agent/*",
"data/Dockerfiles/dev/*",
"data/Dockerfiles/hardhat/*",
"data/Dockerfiles/tendermint/*",
"data/contracts/*",
"data/contracts/registries_manager/*",
"data/contracts/registries_manager/build/*",
"data/contracts/component_registry/*",
"data/contracts/component_registry/build/*",
"data/contracts/service_registry/*",
"data/contracts/service_registry/build/*",
"data/contracts/service_registry/tests/*",
"data/contracts/agent_registry/*",
"data/contracts/agent_registry/build/*",
"data/contracts/service_manager/*",
"data/contracts/service_manager/build/*",
"test_tools/data/*",
],
},
packages=find_packages(include=["autonomy*"]),
classifiers=[
"Environment :: Console",
"Environment :: Web Environment",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: Unix",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: System",
],
install_requires=base_deps,
tests_require=["tox"],
extras_require=all_extras,
entry_points={"console_scripts": ["autonomy=autonomy.cli:cli"]},
zip_safe=False,
include_package_data=True,
license=about["__license__"],
python_requires=">=3.8",
keywords="autonomy open-autonomy aea open-aea autonomous-economic-agents agent-framework multi-agent-systems multi-agent cryptocurrency cryptocurrencies dezentralized dezentralized-network",
project_urls={
"Bug Reports": "https://github.com/valory-xyz/open-autonomy/issues",
"Source": "https://github.com/valory/open-autonomy",
},
)