From c3179e7b1319e15b2b0eb66b66191fa29bee88fd Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Wed, 29 Jan 2020 21:40:43 +0100 Subject: [PATCH] Build: Updated setup.py to represent project ownership change. --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index cdbf515..b8067cc 100644 --- a/setup.py +++ b/setup.py @@ -4,13 +4,13 @@ from setuptools import setup setup( name='aiogremlin', - version='3.3.1', + version='3.3.2', url='', license='Apache Software License', - author='davebshow', - author_email='davebshow@gmail.com', + author='Jeffrey Phillips Freeman', + author_email='Jeffrey.Freeman@syncleus.com', description='Async Gremlin-Python', - long_description=open('README.txt').read(), + long_description=open('README.md').read(), packages=['aiogremlin', 'aiogremlin.driver', 'aiogremlin.driver.aiohttp', @@ -28,7 +28,7 @@ setup( setup_requires=['pytest-runner'], tests_require=['pytest-asyncio', 'pytest-timeout', 'pytest', 'mock'], classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', -- GitLab