diff --git a/setup.py b/setup.py index a96cf7a2..82d437bc 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,20 @@ setup( name='agent', version='0.1', - description='chat agent powered by aiwaves', + description='Chat agent powered by aiwaves', + long_description='A chat agent powered by aiwaves AI technology.', author='aiwaves', - packages=find_packages() -) \ No newline at end of file + author_email='contact@aiwaves.com', # Add your email address here + packages=find_packages(), + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Topic :: Communications :: Chat', + ], +)