Skip to content

Commit 9e7aca5

Browse files
committed
Updated setup.py
1 parent 1fdc314 commit 9e7aca5

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

setup.py

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@
1717

1818
from setuptools import find_packages, setup
1919

20+
with open("README.md", "r") as fh:
21+
long_description = fh.read()
2022

2123
setup(
2224
name='compreface-sdk',
23-
packages=find_packages(where='compreface', include=['examples']),
25+
packages=find_packages(exclude=("tests",)),
2426
version='0.1.0',
25-
license='apache-2.0',
27+
license='Apache License 2.0',
2628
description='CompreFace Python SDK makes face recognition into your application even easier.',
29+
long_description=long_description,
30+
long_description_content_type="text/markdown",
2731
author='Artsiom Liubymov [email protected], Artsiom Khadzkou [email protected]',
2832
2933
url='https://exadel.com/solutions/compreface/',
@@ -43,8 +47,15 @@
4347
classifiers=[
4448
'Development Status :: 5 - Production/Stable',
4549
'Intended Audience :: Developers',
50+
'Intended Audience :: Science/Research',
51+
'Intended Audience :: Information Technology',
52+
'Topic :: Software Development',
4653
'Topic :: Software Development :: Build Tools',
47-
'License :: OSI Approved :: Apache license 2.0',
48-
'Programming Language :: Python :: 3.7+',
54+
'Topic :: Software Development :: Libraries',
55+
'Topic :: Scientific/Engineering :: Image Recognition',
56+
'Topic :: Scientific/Engineering :: Artificial Intelligence',
57+
'License :: OSI Approved :: Apache Software License',
58+
'Programming Language :: Python :: 3',
59+
'Programming Language :: Python :: 3.7'
4960
],
5061
)

0 commit comments

Comments
 (0)