forked from shner-elmo/tradezero-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.06 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
[tool.poetry]
name = "tradezero-api"
version = "0.3.0"
description = "A package for executing orders and retrieving data through the TradeZero web platform"
authors = ["shner-elmo <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "tradezero_api"}]
repository = "https://github.com/shner-elmo/db-wrapper"
documentation = "https://github.com/shner-elmo/tradezero-api/blob/master/README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.urls]
issues = "https://github.com/shner-elmo/tradezero-api/issues"
[tool.poetry.dependencies]
python = "^3.10"
selenium = "^4.8.2"
webdriver-manager = "^3.8.5"
pandas = "^1.5.3"
lxml = "^4.9.2"
pytz = "^2022.7.1"
termcolor = "^2.2.0"
[tool.poetry.group.dev.dependencies]
ipython = "^8.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"