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
setup(
name='base58',
py_modules=['base58'],
version='1.0.3',
description='Base58 and Base58Check implementation',
author='David Keijser',
author_email='keijser@gmail.com',
url='https://github.com/keis/base58',
license='MIT',
entry_points={
'console_scripts': [
'base58 = base58:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
],
)
|