/ source-etherscan / pyproject.toml
pyproject.toml
 1  [build-system]
 2  requires = [ "poetry-core>=1.0.0",]
 3  build-backend = "poetry.core.masonry.api"
 4  
 5  [tool.poetry]
 6  version = "0.1.0"
 7  name = "source-etherscan"
 8  description = "Source implementation for etherscan."
 9  authors = [ "Airbyte <contact@airbyte.io>",]
10  license = "MIT"
11  readme = "README.md"
12  documentation = "https://docs.airbyte.com/integrations/sources/etherscan"
13  homepage = "https://airbyte.com"
14  repository = "https://github.com/airbytehq/airbyte"
15  packages = [ { include = "source_etherscan" }, {include = "main.py" } ]
16  
17  [tool.poetry.dependencies]
18  python = "^3.9,<3.12"
19  airbyte-cdk = "^0"
20  
21  [tool.poetry.scripts]
22  source-etherscan = "source_etherscan.run:run"
23  
24  [tool.poetry.group.dev.dependencies]
25  requests-mock = "*"
26  pytest-mock = "*"
27  pytest = "*"
28