20 lines
445 B
Python
20 lines
445 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="blockshell",
|
|
version='0.1',
|
|
author = "Daxeel Soni",
|
|
author_email = "daxeelsoni44@gmail.com",
|
|
url = "https://daxeel.github.io",
|
|
description = ("A command line utility for learning Blockchain concepts."),
|
|
py_modules=['bls'],
|
|
install_requires=[
|
|
'Click',
|
|
'colorama'
|
|
],
|
|
entry_points='''
|
|
[console_scripts]
|
|
blockshell=bls:cli
|
|
''',
|
|
)
|