forked from matthewtrotter/assetuniverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "assetuniverse"
description = "A downloader of historical daily returns for multiple investable assets."
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.6"
keywords = ["historical returns", "returns", "daily returns", "stocks", "futures", "commodities", "interactive brokers", "yahoo finance", "fred"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
dependencies = [
"appdirs",
"arrow",
"diskcache",
"ib_insync",
"numpy",
"pandas",
"pandas-datareader",
"plotly",
"pytest",
"yfinance",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "assetuniverse.VERSION"}
[tool.semantic_release]
branch = "main"
build_command = false
commit_version_number = true
hvcs = "github"
upload_to_repository = false
upload_to_release = false
version_source = "tag"
version_variable = "assetuniverse/__init__.py:VERSION"