Spaces:
Build error
Build error
File size: 1,052 Bytes
4585d4c |
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 38 39 40 41 42 43 44 45 46 47 |
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "1p-wallet"
version = "0.1.0"
description = "2FA for web3 wallets"
authors = [{ name = "Nasfame", email = "laciferin@gmail.com" }]
requires-python = "~=3.13"
readme = "README.md"
license = "MIT"
keywords = ["streamlit", "web3", "2fa"]
dependencies = [
"streamlit>=1.49.0,<2",
"dataclasses-json>=0.6.7,<0.7",
"web3>=6.0.0,<7", # For Web3 interactions
"python-dotenv>=1.0.0,<2", # For managing environment variables
"pyotp>=2.0.0,<3", # For Time-based One-Time Password algorithm (2FA)
"aptos-sdk>=0.11.0",
"ecdsa>=0.19.1",
"streamlit-javascript>=0.1.5",
"nest-asyncio>=1.6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0,<8", # For testing
]
[project.urls]
Homepage = "https://1p-wallet.streamlit.app"
# Repository = ""
# Documentation = ""
# "Bug Tracker" = ""
[tool.hatch.build.targets.wheel]
include = [
"app.py",
"pages/**",
"utils/**",
"static/**",
"Readme.md",
"LICENSE",
]
|