forked from summa-tx/riemann
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 993 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# flake8: noqa
from setuptools import setup, find_packages
setup(
name='riemann-tx',
version='1.1.2',
description=('Transaction creation library for Bitcoin-like coins'),
url='https://github.com/summa-tx/riemann',
author='James Prestwich',
author_email='[email protected]',
license='LGPLv3.0',
install_requires=[],
packages=find_packages(),
package_dir={'riemann': 'riemann'},
keywords = 'bitcoin litecoin cryptocurrency decred blockchain development',
python_requires='>=3.6',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Security :: Cryptography',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)