lbry-sdk/setup.py

44 lines
1.1 KiB
Python
Raw Normal View History

2018-05-25 08:03:25 +02:00
import os
import re
from setuptools import setup, find_packages
2018-05-25 19:19:54 +02:00
import torba
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 library for bitcoin based currencies.',
keywords='wallet,crypto,currency,money,bitcoin,lbry',
classifiers=(
'Framework :: Twisted',
'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 :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
),
packages=find_packages(exclude=('tests',)),
include_package_data=True,
2018-07-21 20:43:47 +02:00
python_requires='>=3.7',
2018-05-25 08:03:25 +02:00
install_requires=(
'twisted',
'ecdsa',
'pbkdf2',
'cryptography',
'typing'
),
extras_require={
'test': (
'mock',
)
}
)