-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1010 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 1010 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
from setuptools import setup, find_packages
setup(
name='pybip38',
version='0.9',
install_requires=['pycrypto','scrypt','simplebitcoinfuncs'],
description='My python implementation of the full BIP0038 spec',
url='https://github.com/maxweisspoker/pybip38',
keywords='bitcoin bip38 bip0038 bip BIP 38 BIP38 BIP0038 password encryption casascius private key',
author='Maximilian Weiss',
author_email='MaxWeiss@hotmail.com',
license='MIT',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
)