-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
29 lines (26 loc) · 984 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
# Bitcoin Address v0.1
# Copyright (c) 2020 - https://github.com/fortesp/bitcoinaddress
# This software is distributed under the terms of the MIT License.
# See the file 'LICENSE' in the root directory of the present distribution,
# or http://opensource.org/licenses/MIT.
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="bitcoinaddress",
version="0.1.5",
author="Pedro Fortes",
author_email="[email protected]",
description="A simple Bitcoin address generator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fortesp/bitcoinaddress",
packages=setuptools.find_packages(),
install_requires=['base58', 'ecdsa'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)