15 lines
303 B
Python
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()
|