forked from PlusGenie/tbot-tradingboat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 1.07 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
[build-system]
# PEP 518 https://www.python.org/dev/peps/pep-0518/
# https://discuss.python.org/t/help-testing-experimental-features-in-setuptools/13821
requires = [
"setuptools>=64",
"wheel", # for bdist package distribution
"setuptools_scm>=6.4", # for automated versioning
]
# PEP 517 https://peps.python.org/pep-0517/
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
# include = []
# exclude = ["tests"]
namespaces = true
[tool.setuptools_scm]
version_scheme = "release-branch-semver"
[project]
name = "tbot_tradingboat"
authors = [
{ name="Sangwook Lee", email="aladdin@plusgenie.com" },
]
description = "The IBKR decoder on Tradingboat for Tradingview's Webhook"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Dual Licensing (GPL and Commercial)",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "http://www.plusgenie.com"