Skip to content

Commit b65c785

Browse files
committed
add neccesary metadata
1 parent bf77bef commit b65c785

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Installation instructions
1414

1515
bitcoin-python uses setuptools for the install script. There are no dependencies apart from Python itself.
1616

17+
::
18+
1719
$ python setup.py build
1820
$ python setup.py install
1921

setup.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
from setuptools import setup, find_packages
22
setup(
3-
name = "bitcoin-python",
4-
version = "0.2",
3+
name = 'bitcoin-python',
4+
version = '0.2',
5+
description='Friendly Bitcoin JSON-RPC API binding for Python',
6+
long_description='This package allows performing commands such as listing the current balance and sending coins to the Satoshi (original) client from Python.',
7+
maintainer='Wladimir van der Laan',
8+
maintainer_email='laanwj@gmail.com',
9+
url='http://laanwj.github.com/bitcoin-python/doc/',
10+
classifiers=[
11+
'Development Status :: 4 - Beta',
12+
'Environment :: Console',
13+
'Environment :: Web Environment',
14+
'Intended Audience :: Developers',
15+
'Programming Language :: Python',
16+
'License :: OSI Approved :: MIT License',
17+
'Topic :: Office/Business :: Financial'
18+
],
519
packages = find_packages("src"),
620
package_dir = {'':'src'}
721
)

0 commit comments

Comments
 (0)