PythonRMV/setup.py
2022-09-22 15:57:58 +02:00

15 lines
303 B
Python

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()