forked from fetchai/agents-aea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
132 lines (114 loc) · 4.42 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
#
# Copyright 2018-2022 Fetch.AI Limited
#
# 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 = "aea"
here = os.path.abspath(os.path.dirname(__file__))
def get_all_extras() -> Dict:
cli_deps = [
"click>=7.0.0,<8.0.0",
"pyyaml>=4.2b1,<6.0",
"jsonschema>=3.0.0,<4.0.0",
"packaging>=20.4,<=21.5",
]
extras = {
"cli": cli_deps,
"test_tools": 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 = [
"base58>=1.0.3,<3.0.0",
"jsonschema>=3.0.0,<4.0.0",
"packaging>=20.3,<21.0",
"semver>=2.9.1,<3.0.0",
"protobuf>=3.19.0,<4.0.0",
"pymultihash==0.8.2",
"pyyaml>=4.2b1,<6.0",
"requests>=2.22.0,<3.0.0",
"python-dotenv>=0.14.0,<0.18.0",
"ecdsa>=0.15,<0.17.0"
]
if os.name == "nt" or os.getenv("WIN_BUILD_WHEEL", None) == "1":
base_deps.append("pywin32==303")
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/fetchai/agents-aea/main/"
replacement = raw_url_root + r"\g<0>"
readme = re.sub(r"(?<=<img src=\")(/.*)(?=\")", replacement, readme, re.DOTALL)
header = re.search("<h1.*?(?=## )", readme, re.DOTALL).group(0)
get_started = re.search("## Get started.*?(?=## )", readme, re.DOTALL).group(0)
cite = re.search("## Cite.*$", readme, re.DOTALL).group(0)
return "\n".join([header, get_started, cite])
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={"aea": ["py.typed"]},
packages=find_packages(include=["aea*"]),
classifiers=[
"Environment :: Console",
"Environment :: Web Environment",
"Development Status :: 5 - Production/Stable",
"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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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": ["aea=aea.cli:cli"]},
zip_safe=False,
include_package_data=True,
license=about["__license__"],
python_requires=">=3.6",
keywords="aea autonomous-economic-agents agent-framework multi-agent-systems multi-agent cryptocurrency cryptocurrencies dezentralized dezentralized-network fetch-ai",
project_urls={
"Bug Reports": "https://github.com/fetchai/agents-aea/issues",
"Source": "https://github.com/fetchai/agents-aea",
},
)