Skip to content

Commit

Permalink
clean up and create requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich committed Sep 4, 2017
1 parent 628352d commit 8aefbd2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.pyc
xcat.egg-info/
.tmp/
venv/
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,18 @@
setup(
name="xcat",
version=version,
entry_points = {
"console_scripts": ['xcat = xcat.cli:main']
entry_points={
"console_scripts": ['xcat = xcat.cli:main']
},
description="Xcat is a package that creates cross-chain atomic transactions.",
description=("Xcat is a package that "
"creates cross-chain atomic transactions."),
author="arcalinea and arielgabizon",
author_email="[email protected]",
license="MIT",
url="http://github.com/zcash/xcat",
install_requires=['python-bitcoinlib', 'plyvel'],
dependency_links=['http://github.com/arcalinea/python-zcashlib/tarball/master'],
dependency_links=[
'http://github.com/arcalinea/python-zcashlib/tarball/master'
],
packages=find_packages()
)
1 change: 1 addition & 0 deletions xcat/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def test_exporttrade(self):
def test_importtrade(self):
trade = cli.importtrade('test', self.__class__.hexstr)


class CliTest(SimpleTestCase):
def test_findtrade(self):
trade = cli.findtrade('test')
Expand Down

0 comments on commit 8aefbd2

Please sign in to comment.