-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.64 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.64 KB
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
from setuptools import setup, find_packages
import codecs
import os
VERSION = "0.0.21"
DESCRIPTION = "Analyzing arbitrage opportunities between DEcentralized eXchanges (dex-to-dex)"
LONG_DESCRIPTION = "An extensible library allows to analyze DEX-to-DEX arbitrage opportunities autonomously, besides advanced decentralized exchange operations"
urls = {
"Source": "https://github.com/f4T1H21/Arbitrage-Bot-Code-Library/blob/main/libarbitrage/lib.py",
"Homepage": "https://github.com/f4T1H21/Arbitrage-Bot-Code-Library",
"Documentation": "https://github.com/f4T1H21/Arbitrage-Bot-Code-Library#documentation",
"Twitter": "https://twitter.com/f4T1H21",
"Linkedin": "https://www.linkedin.com/in/%C5%9Fefik-efe/"
}
setup(
name="libarbitrage",
version=VERSION,
author="f4T1H21 (Şefik Efe Altınoluk)",
author_email="<sefbey21@gmail.com>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=["web3"],
project_urls=urls,
keywords=["python", "bot", "arbitrage", "analyze", "arbitrage analyze", "dex", "dex arbitrage", "pyarbitrage", "libarbitrage"],
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Developers",
]
)