-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (37 loc) · 1.46 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 = "bbg_fetch"
version = "1.0.30"
description = "Bloomberg fetching analytics wrapping xbbg package"
license = "LICENSE.txt"
authors = ["Artur Sepp <artursepp@gmail.com>"]
maintainers = ["Artur Sepp <artursepp@gmail.com>"]
readme = "README.md"
repository = "https://github.com/ArturSepp/BloombergFetch"
documentation = "https://github.com/ArturSepp/BloombergFetch"
keywords= ["quantitative", "investing", "portfolio optimization", "systematic strategies", "volatility"]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial :: Investment",
]
#packages = [ {include = "bloomberg_fetch"} ]
[tool.poetry.urls]
"Issues" = "https://github.com/ArturSepp/BloombergFetch/issues"
"Personal website" = "https://artursepp.com"
[tool.poetry.dependencies]
python = ">=3.8"
pandas = ">=1.5.2"
xbbg = ">=0.0.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"