zbxcat/setup.py

23 lines
636 B
Python
Raw Permalink Normal View History

2017-07-28 17:23:32 -07:00
#!/usr/bin/env python
from setuptools import setup, find_packages
from xcat import version
setup(
name="xcat",
version=version,
2017-09-04 09:06:30 -07:00
entry_points={
"console_scripts": ['xcat = xcat.cli:main']
2017-07-28 17:23:32 -07:00
},
2017-09-04 09:06:30 -07:00
description=("Xcat is a package that "
"creates cross-chain atomic transactions."),
2017-07-28 17:23:32 -07:00
author="arcalinea and arielgabizon",
2017-08-25 12:03:54 -07:00
author_email="info@z.cash",
2017-07-28 17:23:32 -07:00
license="MIT",
url="http://github.com/zcash/xcat",
install_requires=['python-bitcoinlib', 'plyvel'],
2017-09-04 09:06:30 -07:00
dependency_links=[
'http://github.com/arcalinea/python-zcashlib/tarball/master'
],
2017-07-28 17:23:32 -07:00
packages=find_packages()
)