2022-09-22 16:13:02 +03:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2022-09-22 19:31:20 +03:00
|
|
|
name="pyrmv",
|
|
|
|
version="0.1.0",
|
2022-09-22 16:13:02 +03:00
|
|
|
author="Profitroll",
|
|
|
|
description="Small module that makes your journey with RMV REST API somehow easier.",
|
2022-09-22 19:31:20 +03:00
|
|
|
author_email="profitroll@end-play.xyz",
|
2022-09-22 16:13:02 +03:00
|
|
|
install_requires=[
|
|
|
|
"requests",
|
|
|
|
"xmltodict"
|
2022-09-22 19:31:20 +03:00
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 1 - Planning",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
"Topic :: Utilities"
|
2022-09-22 16:13:02 +03:00
|
|
|
]
|
2022-09-22 19:31:20 +03:00
|
|
|
)
|