From 9e7aca58be388884a44acfc98a29e33c8c3e7852 Mon Sep 17 00:00:00 2001 From: spospielov Date: Tue, 27 Jul 2021 18:47:28 +0300 Subject: [PATCH] Updated setup.py --- setup.py | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index c3f9729..29efb0a 100644 --- a/setup.py +++ b/setup.py @@ -17,13 +17,17 @@ from setuptools import find_packages, setup +with open("README.md", "r") as fh: + long_description = fh.read() setup( name='compreface-sdk', - packages=find_packages(where='compreface', include=['examples']), + packages=find_packages(exclude=("tests",)), version='0.1.0', - license='apache-2.0', + license='Apache License 2.0', description='CompreFace Python SDK makes face recognition into your application even easier.', + long_description=long_description, + long_description_content_type="text/markdown", author='Artsiom Liubymov aliubymov@exadel.com, Artsiom Khadzkou akhadzkou@exadel.com', author_email='aliubymov@exadel.com, akhadzkou@exadel.com', url='https://exadel.com/solutions/compreface/', @@ -43,8 +47,15 @@ classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', + 'Intended Audience :: Science/Research', + 'Intended Audience :: Information Technology', + 'Topic :: Software Development', 'Topic :: Software Development :: Build Tools', - 'License :: OSI Approved :: Apache license 2.0', - 'Programming Language :: Python :: 3.7+', + 'Topic :: Software Development :: Libraries', + 'Topic :: Scientific/Engineering :: Image Recognition', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.7' ], )