forked from amiller/bitcoin-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 922 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = 'bitcoin-python',
version = '0.2',
description='Friendly Bitcoin JSON-RPC API binding for Python',
long_description='This package allows performing commands such as listing the current balance and sending coins to the Satoshi (original) client from Python. The communication with the client happens over JSON-RPC.',
maintainer='Wladimir van der Laan',
maintainer_email='laanwj@gmail.com',
url='http://laanwj.github.com/bitcoin-python/doc/',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Topic :: Office/Business :: Financial'
],
packages = find_packages("src"),
package_dir = {'':'src'}
)