forked from aruseni/python-cryptocurrency-wallet-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 619 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='cryptocurrency-wallet-generator',
packages=find_packages(),
version='0.0.7',
url='https://github.com/aruseni/python-cryptocurrency-wallet-generator',
author='aruseni',
author_email='aruseni.magiku@gmail.com',
description='Simple Python package that can generate wallets for several cryptocurrencies',
zip_safe=False,
include_package_data=True,
platforms='any',
license='Creative Commons Attribution-Noncommercial-Share Alike license',
install_requires=[
'ecdsa==0.13',
'ethereum==2.1.0',
],
)