Skip to content

Commit 2e7a67d

Browse files
committed
Merge pull request #15 from dionyziz/dependency_fix
Fix package reference for pip – package is now installable
2 parents 1d28007 + 05f0a50 commit 2e7a67d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
v0.1.3, 2014-08-12 -- Fix inclusion of package list of project so that library is importable, include twisted as dependency.
12
v0.1.2, 2014-08-10 -- Include ecdsa and zmq requirements in installation.
23
v0.1.1, 2014-08-10 -- Package as pip package.
34
v0.1.0, 2013-09-30 -- Initial release.

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import setup
22

33
setup(
44
name='python-obelisk',
5-
version="0.1.2",
6-
install_requires=['ecdsa', 'pyzmq'],
5+
version="0.1.3",
6+
install_requires=['twisted', 'ecdsa', 'pyzmq'],
7+
packages=['obelisk'],
78
maintainer='Dionysis Zindros',
89
maintainer_email='[email protected]',
910
zip_safe=False,

0 commit comments

Comments
 (0)