zbxcat/setup.py

20 lines
603 B
Python
Raw 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,
entry_points = {
"console_scripts": ['xcat = xcat.cli:main']
},
2017-08-02 19:36:14 -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-02 19:36:14 -07:00
author_email="arcalinea@z.cash",
2017-07-28 17:23:32 -07:00
license="MIT",
url="http://github.com/zcash/xcat",
install_requires=['python-bitcoinlib', 'plyvel'],
dependency_links=['http://github.com/arcalinea/python-zcashlib/tarball/master'],
2017-07-28 17:23:32 -07:00
packages=find_packages()
)