PythonRMV/setup.py

19 lines
370 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.",
packages=[
"PythonRMV",
"PythonRMV/raw"
],
install_requires=[
"requests",
"xmltodict"
]
)
if __name__ == "__main__":
setup()