From 35b0eeac0372a154f27408c9e79cf5979e890330 Mon Sep 17 00:00:00 2001 From: Ravi Sharma Date: Mon, 5 Nov 2018 23:14:54 +0530 Subject: [PATCH] updated setup script --- setup.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a013cc4..5390b14 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def run(self): if __name__ == '__main__': setup( name='yaml2object', - version='1.0.0', + version='1.0.1', description='A simple solution that allows dot notation for YAML file.', long_description='yaml2object is a simple solution that allows dot notation for YAML file.', author='Ravi Sharma', @@ -32,9 +32,13 @@ def run(self): keywords=['YAML', 'pyyaml', 'Python YAML', 'python yaml'], packages=find_packages(exclude=['tests']), classifiers=[ - 'Development Status :: 3 - Alpha', - 'Programming Language :: Python', + 'Environment :: Console', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Operating System :: OS Independent', 'License :: OSI Approved :: Apache Software License', + 'Intended Audience :: Developers', + 'Natural Language :: English' ], install_requires=['pyyaml'], zip_safe=True,