FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-bitcoin-utils/setup.py at master · karask/python-bitcoin-utils · GitHub
karask
/
python-bitcoin-utils
Public
Notifications
You must be signed in to change notification settings
Fork
147
Star
356
Code
Issues
0
Pull requests
8
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-bitcoin-utils
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (30 loc) · 979 Bytes
Breadcrumbs
python-bitcoin-utils
/
setup.py
Copy path
File metadata and controls
34 lines (30 loc) · 979 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from
setuptools
import
setup
from
bitcoinutils
import
__version__
# with open('requirements.txt') as f:
# requirements = f.read().splitlines()
# install_reqs = parse_requirements('requirements.txt', session=False)
# requirements = [str(ir.req) for ir in install_reqs]
with
open
(
"README.rst"
)
as
readme
:
long_description
=
readme
.
read
()
setup
(
name
=
"bitcoin_utils"
,
version
=
__version__
,
description
=
"Bitcoin utility functions"
,
long_description
=
long_description
,
author
=
"Konstantinos Karasavvas"
,
author_email
=
"kkarasavvas@gmail.com"
,
url
=
"https://github.com/karask/python-bitcoin-utils"
,
license
=
"MIT"
,
keywords
=
"bitcoin library utilities tools"
,
install_requires
=
[
"base58check>=1.0.2,<2.0"
,
"ecdsa>=0.19.1,<0.20"
,
"sympy>=1.2,<2.0"
,
],
packages
=
[
"bitcoinutils"
],
# package_data={
# 'bitcoinutils': ['requirements.txt']
# },
# include_package_data=True,
zip_safe
=
False
,
)
Back
|
FazBrowse Home
|
New Git URL