-
Notifications
You must be signed in to change notification settings - Fork 92
/
setup.py
24 lines (24 loc) · 937 Bytes
/
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
from setuptools import setup
setup(
name = 'blocksmith',
packages = ['blocksmith'],
install_requires = ['ecdsa', 'pycryptodome'],
version = '1.2.1',
description = 'Bitcoin/Ethereum key manipulation',
author = 'Timur Badretdinov',
author_email = '[email protected]',
url = 'https://github.com/Destiner/blocksmith',
keywords = ['security', 'cryptography', 'cryptocurrency', 'bitcoin'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries',
],
)