mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-01-12 22:43:42 +08:00
added setup instructions
This commit is contained in:
31
blockstack_cli_0.14.1/setup.py
Normal file
31
blockstack_cli_0.14.1/setup.py
Normal file
@@ -0,0 +1,31 @@
|
||||
"""
|
||||
OpenDig
|
||||
==============
|
||||
|
||||
"""
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='opendig',
|
||||
version='0.1.0',
|
||||
url='https://github.com/opennamesystem/opendig',
|
||||
license='MIT',
|
||||
author='Muneeb Ali, Ryan Shea',
|
||||
author_email='hello@halfmoonlabs.com',
|
||||
description="Command-line tool for Open Name System (like dig is for DNS)",
|
||||
packages=['opendig'],
|
||||
scripts=['bin/opendig'],
|
||||
zip_safe=False,
|
||||
install_requires=[
|
||||
'cement>=2.2.2',
|
||||
'dnspython>=1.11.1'
|
||||
],
|
||||
keywords = ['domain', 'name', 'resolve', 'bitcoin', 'address'],
|
||||
classifiers=[
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user