-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected], Artsiom Khadzkou [email protected]', | ||
author_email='[email protected], [email protected]', | ||
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' | ||
], | ||
) |