mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-03-29 16:48:41 +08:00
36 lines
1.1 KiB
Python
Executable File
36 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
# to set __version__
|
|
exec(open('blockstack_files/version.py').read())
|
|
|
|
setup(
|
|
name='blockstack-files',
|
|
version=__version__,
|
|
url='https://github.com/blockstack/blockstack-core',
|
|
license='GPLv3',
|
|
author='Blockstack.org',
|
|
author_email='support@blockstack.org',
|
|
description='Blockstack encrypted file sharing demo',
|
|
keywords='blockchain git crypography name key value store data',
|
|
packages=find_packages(),
|
|
download_url='https://github.com/blockstack/blockstack-core/archive/master.zip',
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
scripts=['bin/blockstack-files'],
|
|
install_requires=[
|
|
'blockstack>=0.14.1',
|
|
'pyelliptic>=1.5.7',
|
|
],
|
|
classifiers=[
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Internet',
|
|
'Topic :: Security :: Cryptography',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
)
|