Skip to content

Commit 1d28007

Browse files
committed
Merge pull request #14 from dionyziz/pip
Make it a pip package
2 parents ac0d172 + 179b9f6 commit 1d28007

File tree

6 files changed

+679
-2
lines changed

6 files changed

+679
-2
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
v0.1.2, 2014-08-10 -- Include ecdsa and zmq requirements in installation.
2+
v0.1.1, 2014-08-10 -- Package as pip package.
3+
v0.1.0, 2013-09-30 -- Initial release.

LICENSE.txt

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include *.txt

README.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
=========================
2+
Obelisk zmq native client
3+
=========================
4+
5+
Python native client for the obelisk blockchain server.

obelisk/test/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
setup(
44
name='python-obelisk',
5-
version="0.1",
6-
packages=find_packages(exclude="examples"),
5+
version="0.1.2",
6+
install_requires=['ecdsa', 'pyzmq'],
7+
maintainer='Dionysis Zindros',
8+
maintainer_email='[email protected]',
79
zip_safe=False,
10+
description="Python native client for the obelisk blockchain server.",
11+
long_description=open('README.txt').read(),
12+
license='GNU Affero General Public License',
13+
keywords='bitcoin blockchain obelisk obeliskoflight query transaction federated',
14+
url='https://github.com/darkwallet/python-obelisk'
815
)

0 commit comments

Comments
 (0)