forked from diybitcoinhardware/embit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 726 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_namespace_packages
setup(
name="embit",
version="0.7.0",
license="MIT license",
url="https://github.com/diybitcoinhardware/embit",
description="yet another bitcoin library",
long_description="A minimal bitcoin library for MicroPython and Python3 with a focus on embedded systems.",
author="Stepan Snigirev",
author_email="snigirev.stepan@gmail.com",
packages=find_namespace_packages("src", include=["*"]),
package_dir={"": "src"},
package_data={"embit": ["util/prebuilt/*"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)