forked from primal100/pybitcointools
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
25 lines (24 loc) · 925 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
25
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='cryptos',
version='1.36',
description='Python Crypto Coin Tools',
long_description=open('README.md').read(),
author='Paul Martin',
author_email='paulmartinforwork@gmail.com',
url='http://github.com/primal100/pybitcointools',
packages=find_packages(),
scripts=['cryptotool'],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography',
],
)