-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 817 Bytes
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
[tool.poetry]
name = "pygcapi"
version = "0.1.0"
description = "Interface to the Gain Capital API V1 and V2, enabling users to perform various trading operations on Forex.com."
authors = ["Ahmed T. Hammad <ahmed.t.hammad@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/athammad/pygcapi"
homepage = "https://github.com/athammad/pygcapi"
keywords = ["api", "client", "gc"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.11"
pandas = ">=1.3.0"
requests = ">=2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0"
black = "^23.0"
requests-mock="^1.12"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"