-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (53 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "pynecore" = "src/pynecore" }
packages.find = { where = ["src"] }
[tool.distutils]
egg_info.egg_base = "build"
[project]
name = "pynesys-pynecore"
version = "6.0.4" # PineVersion.Major.Minor
description = "Python based Pine Script like runtime and API"
authors = [{ name = "PYNESYS LLC", email = "hello@pynesys.com" }]
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
#
# Dependencies
#
# No dependencies for core functionality, it has only a minimal CLI functionality
dependencies = []
# With user-friendly CLI
optional-dependencies.cli = ["typer", "rich"]
# All optional dependencies for cli and all built-in providers
optional-dependencies.all = ["typer", "rich", "httpx", "ccxt", "pycryptodome"]
#Optional dependencies for development
optional-dependencies.dev = ["pytest", "pytest-spec"]
### Providers
# For all providers to work (CCXT, Capital.com)
optional-dependencies.providers = ["httpx", "ccxt", "pycryptodome"]
# For CCXT provider to work
optional-dependencies.ccxt = ["ccxt"]
# For Capital.com provider to work
optional-dependencies.capitalcom = ["httpx", "pycryptodome"]
#
# Commands
#
scripts.pyne = "pynecore.cli:app"
#
# URLs
#
[project.urls]
"Homepage" = "https://pynecore.org"
"Repository" = "https://github.com/pynesys/pynecore"
"Documentation" = "https://pynecore.org/docs"
"Issues" = "https://github.com/pynesys/pynecore/issues"
# Social
"X" = "https://x.com/pynesys"
"Discord" = "https://discord.com/invite/7rhPbSqSG7"