-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (27 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
26
27
28
29
30
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='blockhash',
description='Speed up your SHA. A different hash style',
version='1.1.0',
author="Venkkatesh_Sekar",
author_email="[email protected]",
packages=['blockhash'],
entry_points={
'console_scripts': ['blockhash=blockhash:main'],
},
test_suite='tests',
url="https://github.com/Spockuto/blockhash",
keywords=[ 'CLI', 'python'],
classifiers=[
'Operating System :: POSIX',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],)