-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
43 lines (37 loc) · 1.91 KB
/
pyproject.toml
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
[tool.poetry]
name = "unicorn-binance-trailing-stop-loss"
version = "1.1.0"
description = "A Python library by LUCIT with a command line interface for a trailing stop loss and smart entry on the Binance exchange."
authors = ["LUCIT Systems and Development <[email protected]>"]
license = "LSOSL - LUCIT Synergetic Open Source License"
readme = "README.md"
homepage = "https://www.lucit.tech/unicorn-binance-trailing-stop-loss.html"
documentation = "https://unicorn-binance-trailing-stop-loss.docs.lucit.tech"
repository = "https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss"
[tool.poetry.urls]
'Howto' = 'https://www.lucit.tech/unicorn-binance-trailing-stop-loss.html#howto'
'Documentation' = 'https://unicorn-binance-trailing-stop-loss.docs.lucit.tech'
'Wiki' = 'https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/wiki'
'Author' = 'https://www.lucit.tech'
'Changes' = 'https://unicorn-binance-trailing-stop-loss.docs.lucit.tech/changelog.html'
'License' = 'https://unicorn-binance-trailing-stop-loss.docs.lucit.tech/license.html'
'Issue Tracker' = 'https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/issues'
'Telegram' = 'https://t.me/unicorndevs'
'Chat' = 'https://app.gitter.im/#/room/#unicorn-binance-trailing-stop-loss:gitter.im'
'Get Support' = 'https://www.lucit.tech/get-support.html'
'LUCIT Online Shop' = 'https://shop.lucit.services/software/unicorn-binance-suite'
[tool.poetry.dependencies]
python = ">=3.7.0"
Cython = "*"
lucit-licensing-python = ">=1.8.1"
requests = "*"
unicorn-binance-rest-api = ">=2.2.0"
unicorn-binance-websocket-api = ">=2.1.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["setuptools", "wheel", "Cython", "pip"]
build-backend = "setuptools.build_meta"
[tool.poetry.scripts]
ubtsl = "unicorn_binance_trailing_stop_loss.cli:main"
[tool.poetry.package_data]
unicorn_binance_websocket_api = ["*.so", "*.dll"]