-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (27 loc) · 840 Bytes
/
setup.py
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
# (c) Copyright 2022 by Coinkite Inc. All rights reserved..
from setuptools import setup
requirements = [
'pyaes',
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='bsms-bitcoin-secure-multisig-setup',
version="0.0.1",
packages=[
'bsms',
],
python_requires='>3.6.0',
install_requires=requirements,
url='https://github.com/coinkite/bsms-bitcoin-secure-multisig-setup',
author='Coinkite Inc.',
author_email='[email protected]',
description="Bitcoin Secure Multisig Setup ( BIP-0129 )",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
)