forked from DotPodcast/keylib-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (31 loc) · 975 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (31 loc) · 975 Bytes
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
"""
Keylib
==============
"""
from setuptools import setup, find_packages
setup(
name='keylib',
version='0.1.1',
url='https://github.com/blockstack/keylib-py',
license='MIT',
author='Blockstack Developers',
author_email='hello@onename.com',
description="""Library for creating and working with private keys, public keys, and bitcoin addresses.""",
keywords='public private key elliptic curve ecdsa secp256k1 cryptography bitcoin',
packages=find_packages(),
zip_safe=False,
install_requires=[
'ecdsa>=0.13',
'utilitybelt>=0.2.6'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)