lbry-sdk/setup.py

57 lines
1.6 KiB
Python
Raw Normal View History

2018-10-20 14:35:28 +02:00
import os
2018-05-25 08:03:25 +02:00
from setuptools import setup, find_packages
2018-05-25 19:19:54 +02:00
import torba
2018-05-25 08:03:25 +02:00
BASE = os.path.dirname(__file__)
with open(os.path.join(BASE, 'README.md'), encoding='utf-8') as fh:
long_description = fh.read()
2018-05-25 08:03:25 +02:00
setup(
name='torba',
2018-05-25 19:19:54 +02:00
version=torba.__version__,
2018-05-25 08:03:25 +02:00
url='https://github.com/lbryio/torba',
license='MIT',
author='LBRY Inc.',
author_email='hello@lbry.io',
description='Wallet client/server framework for bitcoin based currencies.',
long_description=long_description,
2018-10-20 14:35:28 +02:00
long_description_content_type="text/markdown",
keywords='wallet,crypto,currency,money,bitcoin,electrum,electrumx',
2018-05-25 08:03:25 +02:00
classifiers=(
2018-10-15 06:04:25 +02:00
'Framework :: AsyncIO',
2018-05-25 08:03:25 +02:00
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Software Development :: Testing',
2018-05-25 08:03:25 +02:00
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Benchmark',
2018-05-25 08:03:25 +02:00
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
),
packages=find_packages(exclude=('tests',)),
2018-07-24 10:02:53 +02:00
python_requires='>=3.6',
2018-05-25 08:03:25 +02:00
install_requires=(
'aiohttp',
2018-10-30 21:26:07 +01:00
'aiorpcx==0.9.0',
2018-09-21 22:12:07 +02:00
'coincurve',
2018-05-25 08:03:25 +02:00
'pbkdf2',
'cryptography'
2018-05-25 08:03:25 +02:00
),
extras_require={
'test': (
'mock',
'requests',
),
'server': (
'attrs',
'plyvel',
'pylru'
),
},
entry_points={'console_scripts': ['torba=torba.cli:main']}
2018-05-25 08:03:25 +02:00
)