-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 939 Bytes
/
setup.py
File metadata and controls
36 lines (32 loc) · 939 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
#!/usr/bin/env python
from setuptools import (
find_packages,
setup,
)
extras_require = {}
with open("./README.md") as readme:
long_description = readme.read()
setup(
name="web3b0x",
version="0.3",
description="""b0x: Tiny crypto key lockbox for chat based AI agent such as OpenClaw or Nanobot""",
long_description=long_description,
long_description_content_type="text/markdown",
author="0xKJ",
author_email="kernel1983@gmail.com",
url="https://github.com/ModernMagicTechnology/b0x",
include_package_data=True,
install_requires=[
"web3>=6.0.0",
"tornado>=6.0.0",
"pyotp>=2.9.0",
"qrcode>=8.2",
],
python_requires=">=3.8, <4",
extras_require=extras_require,
py_modules=["b0x", "web3b0x"],
license="MIT",
zip_safe=False,
keywords="ethereum",
packages=find_packages(exclude=["scripts", "scripts.*", "tests", "tests.*"]),
)