forked from jcsaaddupuy/dogecoin-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (21 loc) · 853 Bytes
/
setup.py
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='dogecoin-python',
version='0.1.3',
description='Friendly Dogecoin 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.',
url='https://github.com/jcsaaddupuy/dogecoin-python',
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'}
)