forked from Foundation-Devices/foundation-ur-py
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 686 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_namespace_packages
setup(
name="ur",
version="0.1.0",
license="BSD-2-Clause Plus Patent License",
url="https://github.com/Foundation-Devices/foundation-ur-py",
description="UR Implementation in Python -- ported from the C++ Reference Implementation by Blockchain Commons",
author="Ken Carpenter",
author_email="ken@foundationdevices.com",
packages=find_namespace_packages("src", include=["*"]),
package_dir={"": "src"},
test_suite="tests",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)