-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 978 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
from setuptools import setup
__version__ = "v0.6.1"
setup(
name="python-monerorpc",
version=__version__,
description="Enhanced version of python-jsonrpc for Monero (monerod, monero-wallet-rpc).",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Norman Moeschter-Schenck",
author_email="<norman.moeschter@gmail.com>",
maintainer="Norman Moeschter-Schenck",
maintainer_email="<norman.moeschter@gmail.com>",
url="https://www.github.com/monero-ecosystem/python-monerorpc",
download_url=f"https://github.com/monero-ecosystem/python-monerorpc/archive/{__version__}.tar.gz",
packages=["monerorpc"],
install_requires=["requests>=2.23.0"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)