Skip to content

Commit

Permalink
Updated version number to 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Karthik Satheesh Kumar committed Sep 11, 2023
1 parent 08871c9 commit 612b92a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
import setuptools
from os import path

this_directory=path.abspath(path.dirname(__file__))
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as fh:
long_description = fh.read()

setuptools.setup(
name="pycentral",
version="1.1.1",
version="1.2",
author="aruba-automation",
author_email="[email protected]",
description="Aruba Central Python Package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aruba/pycentral",
packages=setuptools.find_packages(exclude=['docs', 'tests', 'sample_scripts']),
packages=setuptools.find_packages(exclude=['docs', 'tests',
'sample_scripts']),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
Expand All @@ -25,7 +26,7 @@
],
python_requires='>=3.6',
install_requires=['requests', 'PyYAML', 'urllib3', 'certifi'],
extras_require = {
'colorLog': ["colorlog"]
extras_require={
'colorLog': ["colorlog"]
}
)

0 comments on commit 612b92a

Please sign in to comment.