-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
22 lines (22 loc) · 874 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
from setuptools import setup, find_packages
setup(
name='verge-python3',
version='1.0',
description='Friendly VERGE JSON-RPC API binding for Python3',
long_description='This package allows performing commands such as listing the current balance'
' and sending coins to the verge client from Python3. The communication with the'
' client happens over JSON-RPC.',
url='https://github.com/vergecurrency/verge-python3',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Office/Business :: Financial'
],
packages=find_packages("src"),
install_requires=['simplejson'],
package_dir={'': 'src'}
)