Improved setup file
This commit is contained in:
parent
920116f2e1
commit
cbf52503fe
17
setup.py
17
setup.py
@ -1,15 +1,22 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="PythonRMV",
|
name="pyrmv",
|
||||||
version="0.1",
|
version="0.1.0",
|
||||||
author="Profitroll",
|
author="Profitroll",
|
||||||
description="Small module that makes your journey with RMV REST API somehow easier.",
|
description="Small module that makes your journey with RMV REST API somehow easier.",
|
||||||
|
author_email="profitroll@end-play.xyz",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"requests",
|
"requests",
|
||||||
"xmltodict"
|
"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()
|
|
Loading…
Reference in New Issue
Block a user