Skip to content

Commit e1eafb3

Browse files
committed
[README] Add version
1 parent 8766434 commit e1eafb3

File tree

5 files changed

+27
-5
lines changed

5 files changed

+27
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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

35
This 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

dev_requirements.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
pytest
2+
pytest-pep8
3+
pytest-cov
4+
pytest-asyncio
5+
6+
coverage
7+
8+
twine
9+
pip
10+
setuptools
11+
wheel
12+
213
pylint

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
from setuptools import find_packages
22
from 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

76
PACKAGES = find_packages(
87
exclude=[
@@ -21,7 +20,6 @@
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',
2624
author_email='[email protected]',
2725
description='Triangular arbitrage by OctoBot',
@@ -32,7 +30,7 @@
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=[

triangular_arbitrage/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
PROJECT_NAME = "OctoBot-Triangular-Arbitrage"
2+
VERSION = "1.0.0"

0 commit comments

Comments
 (0)