-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
32 lines (30 loc) · 1 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stonfi"
version = "0.12"
description = "Async Python SDK for StonFi DEX"
authors = [
{name = "Nikita Ugnich", email = "[email protected]"},
{name = "Dmitry Neutron"},
{name = "Ivan Platonov"}
]
dependencies = [
"pytoniq",
"aiohttp",
"async-lru",
"dataclasses-json"
]
readme = "README.md"
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"]
[project.urls]
Homepage = "https://github.com/lapismyt/ston-fi.py"