forked from uniswap-python/uniswap-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.01 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
[tool.poetry]
name = "uniswap-python"
version = "0.4.5"
description = "An unofficial Python wrapper for the Uniswap exchange"
repository = "https://github.com/shanefontaine/uniswap-python"
readme = "README.md"
keywords = ["uniswap", "ethereum", "exchange", "trading"]
authors = ["Shane Fontaine <shane6fontaine@gmail.com>", "Erik Bjäreholt <erik@bjareho.lt>"]
license = "MIT"
packages = [
{ include = "uniswap" },
]
include = ["uniswap/assets/*.abi", "uniswap/assets/*/*.abi"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.7"
web3 = "^5.12.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
black = "^19.10b0"
pytest-cov = "^2.10.0"
pytest-dotenv = "^0.5.2"
python-dotenv = "^0.14.0"
flake8 = "^3.8.3"
mypy = "^0.782"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"