forked from portfolioplus/pytickersymbols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.02 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
[tool.poetry]
name = "pytickersymbols"
version = "1.15.0"
description = "pytickersymbols provides access to google and yahoo ticker symbols"
authors = ["SlashGordon <[email protected]>"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
wheel = ">=0.41.3,<0.43.0"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
pandas = "^2.1.3"
yfinance = "^0.2.31"
PyYAML = "^6.0.1"
pycountry = "^22.3.5"
packaging = "^23.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"src/pytickersymbols/__init__.py:__version__",
]
version_toml = [
"pyproject.toml:tool.poetry.version",
]
branch = "master"
upload_to_pypi = true
upload_to_release = true
build_command = "source .venv/bin/activate && python3 tools/yaml2data.py && poetry build"
[tool.pytest.ini_options]
addopts = "tests/ --junitxml test-results/test.xml --cov src/pytickersymbols --cov-report term-missing"
pythonpath = ["src"]