22 lines
663 B
Python
22 lines
663 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="pyrmv",
|
|
version="0.1.0",
|
|
author="Profitroll",
|
|
description="Small module that makes your journey with RMV REST API somehow easier.",
|
|
author_email="profitroll@end-play.xyz",
|
|
install_requires=[
|
|
"requests",
|
|
"xmltodict"
|
|
],
|
|
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"
|
|
]
|
|
) |