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