Skip to content

Commit df40072

Browse files
committed
Merge tag '0.3.0rc1' into develop
Release 0.3.0rc1 This release moves implementation details to pygraphene to improve maintainability f9fb23b (HEAD -> master) Merge branch 'release/0.3.0rc1' f779c47 (release/0.3.0rc1) Version bump 1e7d98c (develop) Merge branch 'feature/cleanup-txbuilder' into develop 2695525 Fix messages and account b67724c Bump requirement for pygraphene 431582f Updates to documentation 3a6c491 remove obsolete modules 1a06cfc Update documentation 3918218 cleanup 43a2170 Simplify Key classes 960f3aa Remove logging module acc54d5 move general stuff to graphene 7e5d506 (origin/develop) Cleanup base.memo 2a0b813 Simplyify dealing with Prefixes 3e15f87 Improve class dealing and unittesting 055635f Fix unittesting e13f77f define required type_id 3a9f16d Migrate common stuff to python-graphene 9c9b15a Separation of wallet.py 4b72616 Fix fox.ini with blake 3bb9b8b Fix __init__ 2e48137 pre-commit installation 8b5294d testing pre-commit 80013b1 linting c96dac6 Isort 812e6e3 Black reformatting 20258e2 Re-enable computation of mcr 5efb1d4 Merge pull request bitshares#162 from jhtitor/memo_pad 4a633ca Merge pull request bitshares#160 from Algruun/master e2ef0a4 Verify memo checksum during decoding. 1c50b37 Always add final padding during memo encryption. b3f1bda Make memo _pad work with bytes, instead of strings. 588b8e7 Add memo tests for padding edge cases. f41bd77 Bid Collateral Operation 54dcfbf Bid Collateral Operation 0b2b137 Message, ensure we can sign on different blockchain too 9644bf5 Ensure we can deal with \r as well 70b8260 [message] Better exception message cd91155 Also store plain message and meta separately dae6918 After verification fill in class members bc73a8a bitshares#128 Proposal fix, now, at least method accountopenorders won't raise KeyError "limit_orders" 35a3aaf Fix bitshares#151 ebb1f2d Add Hackthedex link in readme.md bitshares#153 cf8fafb Ensure we can verify messages on different networks too 8d66b43 Fix getActiveKeyForAccount failing when multiple keys installed 3aa81cc Makefile rename back temporary test 54600bb use twine for pypi upload e053940 Merge tag '0.2.1' into develop
2 parents 1e7d98c + f9fb23b commit df40072

File tree

1 file changed

+25
-27
lines changed

1 file changed

+25
-27
lines changed

setup.py

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,45 @@
11
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
23

34
from setuptools import setup
45

56
# Work around mbcs bug in distutils.
67
# http://bugs.python.org/issue10945
78
import codecs
9+
810
try:
9-
codecs.lookup('mbcs')
11+
codecs.lookup("mbcs")
1012
except LookupError:
11-
ascii = codecs.lookup('ascii')
12-
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
13+
ascii = codecs.lookup("ascii")
14+
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == "mbcs"))
1315

14-
VERSION = '0.2.1'
16+
VERSION = "0.3.0rc1"
1517
URL = "https://github.com/bitshares/python-bitshares"
1618

1719
setup(
18-
name='bitshares',
20+
name="bitshares",
1921
version=VERSION,
20-
description='Python library for bitshares',
21-
long_description=open('README.md').read(),
22-
download_url='{}/tarball/{}'.format(URL, VERSION),
23-
author='Fabian Schuh',
24-
author_email='[email protected]',
25-
maintainer='Fabian Schuh',
26-
maintainer_email='[email protected]',
22+
description="Python library for bitshares",
23+
long_description=open("README.md").read(),
24+
download_url="{}/tarball/{}".format(URL, VERSION),
25+
author="Fabian Schuh",
26+
author_email="[email protected]",
27+
maintainer="Fabian Schuh",
28+
maintainer_email="[email protected]",
2729
url=URL,
28-
keywords=['bitshares', 'library', 'api', 'rpc'],
29-
packages=[
30-
"bitshares",
31-
"bitsharesapi",
32-
"bitsharesbase"
33-
],
30+
keywords=["bitshares", "library", "api", "rpc"],
31+
packages=["bitshares", "bitsharesapi", "bitsharesbase"],
3432
classifiers=[
35-
'License :: OSI Approved :: MIT License',
36-
'Operating System :: OS Independent',
37-
'Programming Language :: Python :: 3',
38-
'Development Status :: 3 - Alpha',
39-
'Intended Audience :: Developers',
40-
'Intended Audience :: Financial and Insurance Industry',
41-
'Topic :: Office/Business :: Financial',
33+
"License :: OSI Approved :: MIT License",
34+
"Operating System :: OS Independent",
35+
"Programming Language :: Python :: 3",
36+
"Development Status :: 3 - Alpha",
37+
"Intended Audience :: Developers",
38+
"Intended Audience :: Financial and Insurance Industry",
39+
"Topic :: Office/Business :: Financial",
4240
],
4341
install_requires=open("requirements.txt").readlines(),
44-
setup_requires=['pytest-runner'],
45-
tests_require=['pytest'],
42+
setup_requires=["pytest-runner"],
43+
tests_require=["pytest"],
4644
include_package_data=True,
4745
)

0 commit comments

Comments
 (0)