-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
23 lines (23 loc) · 930 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='litecoin-python',
version='0.3',
description='Friendly Litecoin 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='Jeff Cook',
maintainer_email='[email protected]',
url='http://deseret-tech.github.com/litecoin-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'}
)