forked from grinfans/grinmw.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 883 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
import setuptools
setuptools.setup(
name='grinmw',
version='0.1.1',
packages=['grinmw',],
license='MIT',
description = 'Python wrappers around the Grin wallet V3 and Grin node V2 APIs',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author = 'xiaojay, Blade M. Doyle, marekyggdrasil',
install_requires=['requests', 'eciespy', 'coincurve', 'Crypto'],
url = 'https://github.com/grinfans/grinmw.py',
download_url = 'https://github.com/grinfans/grinmw.py/archive/refs/tags/v0.1.1.tar.gz',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)