-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·34 lines (31 loc) · 1.08 KB
/
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
29
30
31
32
33
34
#!/usr/bin/env python2
from setuptools import setup, find_packages
# to set __version__
exec(open('blockstack_gpg/version.py').read())
setup(
name='blockstack-gpg',
version=__version__,
url='https://github.com/blockstack/blockstack-gpg',
license='GPLv3',
author='Blockstack.org',
author_email='[email protected]',
description='GPG integration for Blockstack client applications',
keywords='blockchain git crypography name key value store data',
packages=find_packages(),
download_url='https://github.com/blockstack/gitsec/archive/master.zip',
zip_safe=False,
include_package_data=True,
install_requires=[
'blockstack>=0.14.1',
'gnupg>=2.2.0'
],
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',
],
)