-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
34 lines (32 loc) · 1.06 KB
/
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
31
32
33
34
from setuptools import setup
import sys
if sys.version_info[0] == 3 and sys.version_info[1] == 2:
print("Sorry, Python 3.2 is not supported")
print("Only supported version are 2.7, 3.3 and 3.4")
sys.exit(1)
setup(
name='blocktrail-sdk',
version='1.0.6',
description="BlockTrail's Developer Friendly API binding for Python",
long_description='This package allows interacting with the BlockTrail API',
maintainer='Ruben de Vries',
maintainer_email='[email protected]',
url='https://www.blocktrail.com/api/docs/lang/python',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'
],
packages=["blocktrail"],
install_requires=[
'httpsig >= 1.1.0',
'pycrypto >= 2.6.1',
'requests >= 2.4.3',
'future >= 0.14.3',
'six >= 1.9.0',
],
test_suite="tests.get_tests",
)