-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
28 lines (26 loc) · 951 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='2.1.0',
description=('Transaction creation library for Bitcoin-like coins'),
url='https://github.com/summa-tx/riemann',
author='James Prestwich',
author_email='james@summa.one',
install_requires=[],
packages=find_packages(),
package_dir={'riemann': 'riemann'},
package_data={'riemann': ['py.typed']},
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',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
license="MIT OR Apache-2.0"
)