-
Notifications
You must be signed in to change notification settings - Fork 86
/
setup.py
54 lines (52 loc) · 1.51 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="exorde",
version="v2.5.16",
author="Exorde Labs",
author_email="[email protected]",
description="The AI-based client to mine data and power the Exorde Network",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/exorde-labs/exorde-client",
entry_points={"console_scripts": ["exorde = exorde.main:run"]},
packages=find_packages(include=["exorde"]),
include_package_data=True,
install_requires=[
"madtypes",
"eth-account",
"asyncio",
"aiohttp",
"lxml",
"HTMLParser",
"pytz",
"pyyaml",
"web3==6.20.0",
"packaging",
"finvader==1.0.2",
"aiofiles==23.2.1",
"keybert==0.7.0",
"nltk==3.6.2",
"safetensors==0.3.1",
"numpy==1.23.4",
"tiktoken==0.4.0",
"feedparser==6.0.8",
"python_dateutil==2.8.2",
"newspaper3k==0.2.8",
"fasttext==0.9.2",
"fasttext-langdetect==1.0.5",
"huggingface_hub==0.14.1",
"pandas==1.5.3",
"sentence-transformers==2.2.2",
"spacy==3.5.1",
"swifter==1.3.4",
"tensorflow==2.12.0",
"torch==1.13.0",
"vaderSentiment==3.3.2",
"yake==0.4.8",
"argostranslate==1.9.6",
"wtpsplit==1.3.0"
],
python_requires=">=3.10",
)