-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 806 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
30
31
32
33
34
35
36
[tool.poetry]
name = "gmx_python_sdk"
version = "0.0.12"
description = "A python based SDK developed for interacting with GMX v2"
authors = [
"snipermonke01 <snipermonke01@proton.me>",
"alienf33t <alienf33t@yahoo.com>"
]
maintainers = [
"snipermonke01 <snipermonke01@proton.me>",
"alienf33t <alienf33t@yahoo.com>"
]
repository = "https://github.com/snipermonke01/gmx_python_sdk"
readme = "README.md"
license = "MIT"
[tool.setuptools.packages.find]
include = ["gmx_python_sdk", "gmx_python_sdk.*"]
namespaces = false
[tool.poetry.dependencies]
python = ">= 3.10.4"
numpy = ">= 1.26.3"
hexbytes = ">= 0.3.1"
web3 = ">= 6.10.0"
pyyaml = ">= 6.0.1"
pandas = ">= 1.4.2"
numerize = ">= 0.12"
Packaging = ">= 24.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"