File tree Expand file tree Collapse file tree 5 files changed +27
-5
lines changed Expand file tree Collapse file tree 5 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+ All notable changes to this project will be documented in this file.
3+
4+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6+
7+ ## [ 1.0.0] - 2023-10-18
8+ ### Added
9+ - Initial version
Original file line number Diff line number Diff line change 1- # Triangular Arbitrage by OctoBot
1+ # Triangular Arbitrage by OctoBot [ 1.0.0] ( https://github.com/Drakkar-Software/Triangular-Arbitrage/blob/master/CHANGELOG.md )
2+ [ ![ PyPI] ( https://img.shields.io/pypi/v/OctoBot-Triangular-Arbitrage.svg )] ( https://pypi.python.org/pypi/OctoBot-Triangular-Arbitrage/ )
3+ [ ![ Dockerhub] ( https://img.shields.io/docker/pulls/drakkarsoftware/octobot-triangular-arbitrage.svg?logo=docker )] ( https://hub.docker.com/r/drakkarsoftware/octobot-triangular-arbitrage )
24
35This Python-based project utilizes the [ ccxt library] ( https://github.com/ccxt/ccxt ) and [ OctoBot library] ( https://github.com/Drakkar-Software/OctoBot ) to detect potential triangular arbitrage opportunities in cryptocurrency markets.
46
Original file line number Diff line number Diff line change 11pytest
2+ pytest-pep8
3+ pytest-cov
4+ pytest-asyncio
5+
6+ coverage
7+
8+ twine
9+ pip
10+ setuptools
11+ wheel
12+
213pylint
Original file line number Diff line number Diff line change 11from setuptools import find_packages
22from setuptools import setup
33
4- PROJECT_NAME = "octobot_triangular_arbitrage"
5- VERSION = "0.0.1" # major.minor.revision
4+ from triangular_arbitrage import PROJECT_NAME , VERSION
65
76PACKAGES = find_packages (
87 exclude = [
2120 name = PROJECT_NAME ,
2221 version = VERSION ,
2322 url = 'https://github.com/Drakkar-Software/Triangular-Arbitrage' ,
24- license = 'GPL-3.0' ,
2523 author = 'Drakkar-Software' ,
26242725 description = 'Triangular arbitrage by OctoBot' ,
3230 test_suite = "tests" ,
3331 zip_safe = False ,
3432 data_files = [],
35- include_package_data = True , # copy non python files on install
33+ include_package_data = True ,
3634 install_requires = REQUIRED ,
3735 python_requires = REQUIRES_PYTHON ,
3836 classifiers = [
Original file line number Diff line number Diff line change 1+ PROJECT_NAME = "OctoBot-Triangular-Arbitrage"
2+ VERSION = "1.0.0"
You can’t perform that action at this time.
0 commit comments