From cbf52503fe9f41962425d1a9d4c5c36a23bc074c Mon Sep 17 00:00:00 2001 From: Profitroll <47523801+profitrollgame@users.noreply.github.com> Date: Thu, 22 Sep 2022 18:31:20 +0200 Subject: [PATCH] Improved setup file --- setup.py | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index a85a2a3..9c58cb4 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,22 @@ from setuptools import setup setup( - name="PythonRMV", - version="0.1", + 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" ] -) - -if __name__ == "__main__": - setup() \ No newline at end of file +) \ No newline at end of file