-
Notifications
You must be signed in to change notification settings - Fork 409
/
setup.py
29 lines (27 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='blockchain',
version='1.1.1',
description='Blockchain API library (v1)',
author='Blockchain.info',
author_email='[email protected]',
url='https://github.com/blockchain/api-v1-client-python',
license='MIT',
packages=['blockchain'],
keywords='blockchain.info api blockchain',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Office/Business :: Financial",
"License :: OSI Approved :: MIT License",
],
)