-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 897 Bytes
/
setup.py
File metadata and controls
23 lines (23 loc) · 897 Bytes
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='Maxcoin-python',
version='0.3',
description='Friendly Maxcoin JSON-RPC API binding for Python',
long_description='This package allows performing commands such as listing the current balance'
' and getting connection over The communication with the'
' client happens over JSON-RPC.',
maintainer='Ollie Morris',
maintainer_email='officialgamermorris@gmail.com',
url='https://github.com/Max-Coin/Maxcoin-Pythonrpc',
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'}
)