-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (24 loc) · 957 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
24
25
26
27
from setuptools import setup
from xmrto_wrapper._version import __version__
setup(
name="xmrto_wrapper",
version=__version__,
description=("Interact with XMR.to, create and track your orders."),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Norman Moeschter-Schenck",
author_email="[email protected]",
url="https://github.com/monero-ecosystem/xmrto_wrapper",
download_url=f"https://github.com/monero-ecosystem/xmrto_wrapper/archive/{__version__}.tar.gz",
install_requires=["requests>=2.23.0"],
# py_modules=["xmrto_wrapper"],
packages=["xmrto_wrapper"],
scripts=["bin/xmrto_wrapper"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
],
)