FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-bitshares/setup.py at patch-1 · avral/python-bitshares · GitHub
avral
/
python-bitshares
Public
forked from
bitshares/python-bitshares
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-bitshares
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
53 lines (49 loc) · 1.54 KB
Breadcrumbs
python-bitshares
/
setup.py
Copy path
File metadata and controls
executable file
·
53 lines (49 loc) · 1.54 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python3
from
setuptools
import
setup
# Work around mbcs bug in distutils.
# http://bugs.python.org/issue10945
import
codecs
try
:
codecs
.
lookup
(
'mbcs'
)
except
LookupError
:
ascii
=
codecs
.
lookup
(
'ascii'
)
codecs
.
register
(
lambda
name
,
enc
=
ascii
: {
True
:
enc
}.
get
(
name
==
'mbcs'
))
VERSION
=
'0.1.17'
setup
(
name
=
'bitshares'
,
version
=
VERSION
,
description
=
'Python library for bitshares'
,
long_description
=
open
(
'README.md'
).
read
(),
download_url
=
'https://github.com/xeroc/python-bitshares/tarball/'
+
VERSION
,
author
=
'Fabian Schuh'
,
author_email
=
'Fabian@chainsquad.com'
,
maintainer
=
'Fabian Schuh'
,
maintainer_email
=
'Fabian@chainsquad.com'
,
url
=
'http://www.github.com/xeroc/python-bitshares'
,
keywords
=
[
'bitshares'
,
'library'
,
'api'
,
'rpc'
],
packages
=
[
"bitshares"
,
"bitsharesapi"
,
"bitsharesbase"
],
classifiers
=
[
'License :: OSI Approved :: MIT License'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python :: 3'
,
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'Intended Audience :: Financial and Insurance Industry'
,
'Topic :: Office/Business :: Financial'
,
],
install_requires
=
[
"graphenelib>=0.6.1"
,
"websockets"
,
"appdirs"
,
"Events"
,
"scrypt"
,
"pycryptodome"
,
# for AES, installed through graphenelib already
],
setup_requires
=
[
'pytest-runner'
],
tests_require
=
[
'pytest'
],
include_package_data
=
True
,
)
Back
|
FazBrowse Home
|
New Git URL