PythonRMV/setup.py

15 lines
303 B
Python
Raw Normal View History

2022-09-22 16:13:02 +03:00
from setuptools import setup
setup(
name="PythonRMV",
version="0.1",
author="Profitroll",
description="Small module that makes your journey with RMV REST API somehow easier.",
install_requires=[
"requests",
"xmltodict"
]
)
if __name__ == "__main__":
setup()