-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
72 lines (59 loc) · 1.76 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
[tool.poetry]
name = "pystockfilter"
version = "2.3.1"
description = "Intelligent Stock Screening for Informed Investment Decisions"
authors = ["SlashGordon <slash.gordon.dev@gmail.com>"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
python-dateutil = "^2.8.2"
pandas-ta = "^0.3.14b0"
pystockdb = "^1.2.0"
yfinance = "0.2.52"
joblib = "^1.4.2"
scikit-optimize = "^0.10.2"
numpy = "^1.17.0"
pandas = "^2.1.0"
bokeh = ">=2,<4"
setuptools = "^75.2.0"
[tool.poetry.group.dev.dependencies]
wheel = ">=0.41.3,<0.46.0"
pytest = ">=7.4.3,<9.0.0"
pytest-cov = ">=4.1,<7.0"
flake8 = "^6.1.0"
autopep8 = "^2.0.4"
freezegun = "^1.2.2"
black = ">=23.11,<25.0"
pytest-mock = "^3.14.0"
pytest-benchmark = ">=4,<6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
commit_message = "chore(release): {version}\n\nAutomatically generated by python-semantic-release"
version_toml = [ "pyproject.toml:tool.poetry.version" ]
version_variables = [
"src/pystockfilter/__init__.py:__version__",
]
build_command = "pip install poetry && poetry build -f wheel"
upload_to_pypi = true
[tool.semantic_release.branches.main]
match = "(main|master|hotfix/release3)"
[tool.semantic_release.changelog]
changelog_file = "CHANGELOG.md"
exclude_commit_patterns = []
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
default_bump_level = 0
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = false
[tool.semantic_release.remote.token]
env = "GH_TOKEN"
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true